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 SheepModel : public QuadrupedModel
5{
6private:
7 float headXRot;
8public:
9 SheepModel();
10
11 virtual void prepareMobModel(shared_ptr<LivingEntity> mob, float time, float r, float a);
12 virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
13};