2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "TileEntity.h"
|
|
|
|
|
|
|
|
|
|
class TheEndPortalTileEntity : public TileEntity
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
eINSTANCEOF GetType() { return eTYPE_THEENDPORTALTILEENTITY; }
|
|
|
|
|
static TileEntity *create() { return new TheEndPortalTileEntity(); }
|
|
|
|
|
|
|
|
|
|
// 4J Added
|
2026-03-02 17:37:16 +07:00
|
|
|
shared_ptr<TileEntity> clone();
|
2026-03-01 12:16:08 +08:00
|
|
|
};
|