Files

16 lines
355 B
C
Raw Permalink Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "MobRenderer.h"
class GhastRenderer : public MobRenderer
{
private:
static ResourceLocation GHAST_LOCATION;
static ResourceLocation GHAST_SHOOTING_LOCATION;
2026-03-01 12:16:08 +08:00
public:
GhastRenderer();
2026-03-01 12:16:08 +08:00
protected:
virtual void scale(shared_ptr<LivingEntity> mob, float a);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
2026-03-01 12:16:08 +08:00
};