the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "Model.h"
3
4class SnowManModel : public Model
5{
6public:
7 ModelPart *piece1, *piece2, *head;
8 ModelPart *arm1, *arm2;
9
10 SnowManModel() ;
11 virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
12 void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
13};