aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/VillagerModel.h
diff options
context:
space:
mode:
authorLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
committerLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
commit42aec6dac53dffa6afe072560a7e1d4986112538 (patch)
tree0836426857391df1b6a83f6368a183f83ec9b104 /Minecraft.Client/VillagerModel.h
parentc9d58eeac7c72f0b3038e084667b4d89a6249fce (diff)
parentef9b6fd500dfabd9463267b0dd9e29577eea8a2b (diff)
Merge branch 'main' into pr/win64-world-saves
# Conflicts: # Minecraft.Client/MinecraftServer.cpp # README.md
Diffstat (limited to 'Minecraft.Client/VillagerModel.h')
-rw-r--r--Minecraft.Client/VillagerModel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Minecraft.Client/VillagerModel.h b/Minecraft.Client/VillagerModel.h
index 24c8b858..eaccddae 100644
--- a/Minecraft.Client/VillagerModel.h
+++ b/Minecraft.Client/VillagerModel.h
@@ -5,11 +5,11 @@
class VillagerModel : public Model
{
public:
- ModelPart *head, *body, *arms, *leg0, *leg1;
+ ModelPart *head, *body, *arms, *leg0, *leg1, *nose;
- void _init(float g, float yOffset); // 4J added
- VillagerModel(float g, float yOffset);
+ void _init(float g, float yOffset, int xTexSize, int yTexSize); // 4J added
+ VillagerModel(float g, float yOffset, int xTexSize, int yTexSize);
VillagerModel(float g);
virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled) ;
- virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, unsigned int uiBitmaskOverrideAnim=0);
+ virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
};