the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 17 lines 427 B view raw
1#pragma once 2#include "HumanoidMobRenderer.h" 3 4class SkeletonRenderer : public HumanoidMobRenderer 5{ 6private: 7 static ResourceLocation SKELETON_LOCATION; 8 static ResourceLocation WITHER_SKELETON_LOCATION; 9 10public: 11 SkeletonRenderer(); 12 13protected: 14 virtual void scale(shared_ptr<LivingEntity> mob, float a); 15 void translateWeaponItem(); 16 virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> entity); 17};