mirror of
https://github.com/Patoke/LCERenewed.git
synced 2026-09-27 19:01:36 +00:00
feat: init
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#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);
|
||||
};
|
||||
Reference in New Issue
Block a user