#pragma once #include "MobRenderer.h" class SpiderRenderer : public MobRenderer { private: static ResourceLocation SPIDER_LOCATION; static ResourceLocation SPIDER_EYES_LOCATION; public: SpiderRenderer(); protected: virtual float getFlipDegrees(std::shared_ptr spider); virtual int prepareArmor(std::shared_ptr _spider, int layer, float a); virtual ResourceLocation* getTextureLocation(std::shared_ptr mob); };