2026-03-01 12:16:08 +08:00
|
|
|
#include "Model.h"
|
|
|
|
|
|
|
|
|
|
class ChickenModel : public Model
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ModelPart *head, *hair, *body, *leg0, *leg1, *wing0,* wing1, *beak, *redThing;
|
|
|
|
|
|
|
|
|
|
ChickenModel();
|
2026-03-02 15:58:20 +07:00
|
|
|
virtual void render(std::shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
|
2026-03-01 12:16:08 +08:00
|
|
|
virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, unsigned int uiBitmaskOverrideAnim=0);
|
|
|
|
|
};
|