Files
2026-07-03 18:34:01 +01:00

22 lines
601 B
C++

#pragma once
#include "EntityRenderer.h"
class Painting;
class Random;
class PaintingRenderer : public EntityRenderer
{
private:
Random *random;
static ResourceLocation PAINTING_LOCATION;
public:
PaintingRenderer(); // 4J -added
virtual void render(shared_ptr<Entity> _painting, double x, double y, double z, float rot, float a);
private:
void renderPainting(shared_ptr<Painting> painting, int w, int h, int uo, int vo);
void setBrightness(shared_ptr<Painting> painting, float ss, float ya);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
};