the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 19 lines 515 B view raw
1#pragma once 2#include "Model.h" 3#include "ModelPart.h" 4 5class SkiModel : public Model 6{ 7public: 8 ModelPartArray cubes; 9 10private: 11 bool leftSki; 12 13public: 14 SkiModel(); // 4J added 15 SkiModel(bool leftSki); 16 void _init(bool leftSki); // 4J added 17 virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled); 18 virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity); 19};