mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-23 11:05:32 +00:00
12 lines
273 B
C++
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();
|
|
}; |