mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-25 18:28:12 +05:00
16 lines
355 B
C++
16 lines
355 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class GhastRenderer : public MobRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation GHAST_LOCATION;
|
|
static ResourceLocation GHAST_SHOOTING_LOCATION;
|
|
|
|
public:
|
|
GhastRenderer();
|
|
|
|
protected:
|
|
virtual void scale(shared_ptr<LivingEntity> mob, float a);
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
|
|
}; |