4jcraft/targets/minecraft/client/renderer/entity/GhastRenderer.h
2026-04-01 13:27:58 -05:00

17 lines
404 B
C++

#pragma once
#include "MobRenderer.h"
class ResourceLocation;
class GhastRenderer : public MobRenderer {
private:
static ResourceLocation GHAST_LOCATION;
static ResourceLocation GHAST_SHOOTING_LOCATION;
public:
GhastRenderer();
protected:
virtual void scale(std::shared_ptr<LivingEntity> mob, float a);
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob);
};