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