mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 11:43:36 +00:00
21 lines
469 B
C++
21 lines
469 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(std::shared_ptr<Entity> entity, float time, float r,
|
|
float bob, float yRot, float xRot, float scale,
|
|
bool usecompiled);
|
|
}; |