mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-23 20:18:12 +05:00
20 lines
417 B
C++
20 lines
417 B
C++
#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);
|
|
}; |