the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "MobRenderer.h"
3
4class EnderMan;
5class EndermanModel;
6
7class EndermanRenderer : public MobRenderer
8{
9private:
10 EndermanModel *model;
11 Random random;
12 static ResourceLocation ENDERMAN_EYES_LOCATION;
13 static ResourceLocation ENDERMAN_LOCATION;
14
15public:
16 EndermanRenderer();
17
18 void render(shared_ptr<Entity> _mob, double x, double y, double z, float rot, float a);
19 ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
20 void additionalRendering(shared_ptr<LivingEntity> _mob, float a);
21
22protected:
23 int prepareArmor(shared_ptr<LivingEntity> _mob, int layer, float a);
24};