This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.World/TheEndPortalTileEntity.h
2026-03-02 17:37:16 +07:00

12 lines
280 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();
};