4jcraft/targets/minecraft/world/level/tile/entity/TheEndPortalTileEntity.h
2026-04-01 13:27:58 -05:00

12 lines
321 B
C++

#pragma once
#include "TileEntity.h"
#include "java/Class.h"
class TheEndPortalTileEntity : public TileEntity {
public:
eINSTANCEOF GetType() { return eTYPE_THEENDPORTALTILEENTITY; }
static TileEntity* create() { return new TheEndPortalTileEntity(); }
// 4J Added
std::shared_ptr<TileEntity> clone();
};