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 BatModel : public Model
5{
6private:
7 ModelPart *head;
8 ModelPart *body;
9 ModelPart *rightWing;
10 ModelPart *leftWing;
11 ModelPart *rightWingTip;
12 ModelPart *leftWingTip;
13
14public:
15 BatModel();
16
17 int modelVersion();
18
19 virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
20};