blob: b4036f8ef2508632cd48d704e975452bc98d8967 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
class DaylightDetectorTileEntity : public TileEntity
{
public:
eINSTANCEOF GetType() { return eTYPE_DAYLIGHTDETECTORTILEENTITY; }
static TileEntity *create() { return new DaylightDetectorTileEntity(); }
// 4J Added
virtual shared_ptr<TileEntity> clone();
public:
DaylightDetectorTileEntity();
void tick();
};
|