#pragma once #include "MobRenderer.h" class Endermite; class EndermiteRenderer : public MobRenderer { private: //int modelVersion; static ResourceLocation ENDERMITE_LOCATION; public: EndermiteRenderer(); protected: float getFlipDegrees(shared_ptr spider); public: virtual void render(shared_ptr _mob, double x, double y, double z, float rot, float a); virtual ResourceLocation *getTextureLocation(shared_ptr mob); protected: virtual int prepareArmor(shared_ptr _silverfish, int layer, float a); };