mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-10 19:04:52 +00:00
14 lines
508 B
C++
14 lines
508 B
C++
#pragma once
|
|
#include "Model.h"
|
|
|
|
class EvupulModel : public Model
|
|
{
|
|
public:
|
|
ModelPart *head, *body, *tail, *wing1, *wing2;
|
|
|
|
void _init(float g);
|
|
EvupulModel();
|
|
EvupulModel(float g);
|
|
virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
|
|
virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
|
|
}; |