mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-08 07:37:14 +00:00
16 lines
405 B
C++
16 lines
405 B
C++
#pragma once
|
|
#include "TileEntityRenderer.h"
|
|
|
|
class BeaconTileEntity;
|
|
class ResourceLocation;
|
|
|
|
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);
|
|
};
|