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 SnowManModel;
5
6class SnowManRenderer : public MobRenderer
7{
8private:
9 SnowManModel *model;
10 static ResourceLocation SNOWMAN_LOCATION;
11
12public:
13 SnowManRenderer();
14
15protected:
16 virtual void additionalRendering(shared_ptr<LivingEntity> _mob, float a);
17 virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
18};