mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-25 14:48:13 +05:00
16 lines
339 B
C++
16 lines
339 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class LavaSlimeRenderer : public MobRenderer
|
|
{
|
|
private:
|
|
int modelVersion;
|
|
static ResourceLocation MAGMACUBE_LOCATION;
|
|
|
|
public:
|
|
LavaSlimeRenderer();
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
|
|
|
|
protected:
|
|
virtual void scale(shared_ptr<LivingEntity> _slime, float a);
|
|
}; |