diff options
Diffstat (limited to 'Minecraft.Client/GhastRenderer.h')
| -rw-r--r-- | Minecraft.Client/GhastRenderer.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Minecraft.Client/GhastRenderer.h b/Minecraft.Client/GhastRenderer.h index 6778b9a5..eb4618b1 100644 --- a/Minecraft.Client/GhastRenderer.h +++ b/Minecraft.Client/GhastRenderer.h @@ -3,9 +3,14 @@ class GhastRenderer : public MobRenderer { +private: + static ResourceLocation GHAST_LOCATION; + static ResourceLocation GHAST_SHOOTING_LOCATION; + public: - GhastRenderer(); + GhastRenderer(); protected: - virtual void scale(shared_ptr<Mob> mob, float a); + virtual void scale(shared_ptr<LivingEntity> mob, float a); + virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob); };
\ No newline at end of file |
