Files
MinecraftConsoles/Minecraft.Client/GhastRenderer.h

16 lines
355 B
C
Raw Normal View History

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