Files
cafeberry/Minecraft.Client/LeashKnotRenderer.h
T
2026-07-03 18:34:01 +01:00

19 lines
456 B
C++

#pragma once
#include "EntityRenderer.h"
class LeashKnotModel;
class LeashKnotRenderer : public EntityRenderer
{
private:
static ResourceLocation KNOT_LOCATION;
LeashKnotModel *model;
public:
LeashKnotRenderer();
~LeashKnotRenderer();
virtual void render(shared_ptr<Entity> entity, double x, double y, double z, float rot, float a);
protected:
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> entity);
};