4jcraft/Minecraft.World/Blocks/TileEntities/TheEndPortalTileEntity.h
2026-03-06 11:20:45 -06:00

12 lines
285 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
std::shared_ptr<TileEntity> clone();
};