Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
417 B · 20 lines
C
at master
1234567891011121314151617181920#pragma once#include "Model.h"
class BatModel : public Model{private: ModelPart *head; ModelPart *body; ModelPart *rightWing; ModelPart *leftWing; ModelPart *rightWingTip; ModelPart *leftWingTip;
public: BatModel();
int modelVersion();
virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);};