mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 19:07:15 +00:00
11 lines
297 B
C++
11 lines
297 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();
|
|
}; |