mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 17:47:16 +00:00
15 lines
363 B
C++
15 lines
363 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class LavaSlimeRenderer : public MobRenderer {
|
|
private:
|
|
int modelVersion;
|
|
static ResourceLocation MAGMACUBE_LOCATION;
|
|
|
|
public:
|
|
LavaSlimeRenderer();
|
|
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob);
|
|
|
|
protected:
|
|
virtual void scale(std::shared_ptr<LivingEntity> _slime, float a);
|
|
}; |