the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 17 lines 439 B view raw
1#pragma once 2#include "MobRenderer.h" 3 4class SpiderRenderer : public MobRenderer 5{ 6private: 7 static ResourceLocation SPIDER_LOCATION; 8 static ResourceLocation SPIDER_EYES_LOCATION; 9 10public: 11 SpiderRenderer(); 12 13protected: 14 virtual float getFlipDegrees(shared_ptr<LivingEntity> spider); 15 virtual int prepareArmor(shared_ptr<LivingEntity> _spider, int layer, float a); 16 virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob); 17};