#pragma once #include "EntityRenderer.h" class DefaultRenderer : public EntityRenderer { public: virtual void render(shared_ptr entity, double x, double y, double z, float rot, float a); virtual ResourceLocation *getTextureLocation(shared_ptr mob) { return NULL; }; };