Files
BluTac10-Xbox_Neo/Minecraft.Client/PhantomModel.h
Lord_Cambion 138c7ab028 bug fixes
2026-03-31 18:00:31 +02:00

24 lines
544 B
C++

#pragma once
#include "Model.h"
class PhantomModel : public Model
{
private:
ModelPart *body;
ModelPart *head;
ModelPart *leftWing;
ModelPart *leftWingTip;
ModelPart *rightWing;
ModelPart *rightWingTip;
ModelPart *tailBase;
ModelPart *tailTip;
public:
PhantomModel();
int modelVersion();
virtual void render(shared_ptr<Entity> entity,
float time, float r, float bob,
float yRot, float xRot,
float scale, bool usecompiled);
};