the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 12 lines 280 B view raw
1#pragma once 2#include "TileEntity.h" 3 4class TheEndPortalTileEntity : public TileEntity 5{ 6public: 7 eINSTANCEOF GetType() { return eTYPE_THEENDPORTALTILEENTITY; } 8 static TileEntity *create() { return new TheEndPortalTileEntity(); } 9 10 // 4J Added 11 shared_ptr<TileEntity> clone(); 12};