mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-06 19:57:04 +00:00
18 lines
538 B
C++
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
|
|
};
|