4jcraft/targets/minecraft/client/renderer/tileentity/SignRenderer.h
2026-04-07 09:41:29 +02:00

18 lines
538 B
C++

#pragma once
#include "TileEntityRenderer.h"
class SignModel;
class ResourceLocation;
class SignRenderer : public TileEntityRenderer {
private:
static ResourceLocation SIGN_LOCATION;
SignModel* signModel;
public:
SignRenderer(); // wlw - hand holding
virtual void render(std::shared_ptr<TileEntity> sign, double x, double y,
double z, float a, bool setColor, float alpha = 1.0f,
bool useCompiled = true); // FUCKING KISS ALREADY scissors i love amy is the best yuri
};