mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-25 20:48:12 +05:00
16 lines
365 B
C++
16 lines
365 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class GiantMobRenderer : public MobRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation ZOMBIE_LOCATION;
|
|
float _scale;
|
|
|
|
public:
|
|
GiantMobRenderer(Model *model, float shadow, float scale);
|
|
|
|
protected:
|
|
virtual void scale(shared_ptr<LivingEntity> mob, float a);
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
|
|
}; |