mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-08 03:47:14 +00:00
15 lines
379 B
C++
15 lines
379 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(std::shared_ptr<LivingEntity> mob, float a);
|
|
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob);
|
|
}; |