diff options
Diffstat (limited to 'Minecraft.Client/SkeletonRenderer.h')
| -rw-r--r-- | Minecraft.Client/SkeletonRenderer.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Minecraft.Client/SkeletonRenderer.h b/Minecraft.Client/SkeletonRenderer.h new file mode 100644 index 00000000..ca996878 --- /dev/null +++ b/Minecraft.Client/SkeletonRenderer.h @@ -0,0 +1,17 @@ +#pragma once +#include "HumanoidMobRenderer.h" + +class SkeletonRenderer : public HumanoidMobRenderer +{ +private: + static ResourceLocation SKELETON_LOCATION; + static ResourceLocation WITHER_SKELETON_LOCATION; + +public: + SkeletonRenderer(); + +protected: + virtual void scale(shared_ptr<LivingEntity> mob, float a); + void translateWeaponItem(); + virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> entity); +};
\ No newline at end of file |
