mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-05-21 22:44:59 +00:00
14 lines
481 B
C++
14 lines
481 B
C++
#pragma once
|
|
#include "Model.h"
|
|
|
|
class WatcherModel : public Model
|
|
{
|
|
public:
|
|
ModelPart *head;
|
|
|
|
void _init(float g);
|
|
WatcherModel();
|
|
WatcherModel(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);
|
|
}; |