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