blob: 29752d44046f170f0521358b7f146ef05d3240fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "TileEntity.h"
class TheEndPortalTileEntity : public TileEntity
{
public:
eINSTANCEOF GetType() { return eTYPE_THEENDPORTALTILEENTITY; }
static TileEntity *create() { return new TheEndPortalTileEntity(); }
// 4J Added
shared_ptr<TileEntity> clone();
};
|