mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 15:13:37 +00:00
15 lines
354 B
C++
15 lines
354 B
C++
#pragma once
|
|
|
|
class DaylightDetectorTileEntity : public TileEntity {
|
|
public:
|
|
eINSTANCEOF GetType() { return eTYPE_DAYLIGHTDETECTORTILEENTITY; }
|
|
static TileEntity* create() { return new DaylightDetectorTileEntity(); }
|
|
|
|
// 4J Added
|
|
virtual std::shared_ptr<TileEntity> clone();
|
|
|
|
public:
|
|
DaylightDetectorTileEntity();
|
|
|
|
void tick();
|
|
}; |