the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "QuadrupedModel.h"
3
4class LivingEntity;
5
6class SheepFurModel : public QuadrupedModel
7{
8private:
9 float headXRot;
10public:
11 SheepFurModel();
12
13 virtual void prepareMobModel(shared_ptr<LivingEntity> mob, float time, float r, float a);
14 virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
15};