Files
deadvoxelx-HellishEnds/Minecraft.World/EndGatewayTileEntity.h
2026-04-05 08:53:06 -04:00

12 lines
273 B
C++

#pragma once
#include "TileEntity.h"
class EndGatewayTileEntity : public TileEntity
{
public:
eINSTANCEOF GetType() { return eTYPE_ENDGATEWAYTILEENTITY; }
static TileEntity *create() { return new EndGatewayTileEntity(); }
shared_ptr<TileEntity> clone();
};