blob: 0bc0b46c0c7f58b9a74b170b2684878ef8a1dad6 (
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
std::shared_ptr<TileEntity> clone();
};
|