mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-30 16:33:37 +00:00
15 lines
381 B
C++
15 lines
381 B
C++
#pragma once
|
|
#include "TileEntityRenderer.h"
|
|
|
|
class BeaconTileEntity;
|
|
|
|
class BeaconRenderer : public TileEntityRenderer {
|
|
private:
|
|
static ResourceLocation BEAM_LOCATION;
|
|
|
|
public:
|
|
virtual void render(std::shared_ptr<TileEntity> _beacon, double x, double y,
|
|
double z, float a, bool setColor, float alpha,
|
|
bool useCompiled);
|
|
};
|