Files
cafeberry/Minecraft.World/TheEndPortalTileEntity.h
2026-07-03 18:34:01 +01:00

12 lines
291 B
C++

#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();
};