aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/TheEndPortalTileEntity.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/TheEndPortalTileEntity.h')
-rw-r--r--Minecraft.World/TheEndPortalTileEntity.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Minecraft.World/TheEndPortalTileEntity.h b/Minecraft.World/TheEndPortalTileEntity.h
new file mode 100644
index 00000000..29752d44
--- /dev/null
+++ b/Minecraft.World/TheEndPortalTileEntity.h
@@ -0,0 +1,12 @@
+#pragma once
+#include "TileEntity.h"
+
+class TheEndPortalTileEntity : public TileEntity
+{
+public:
+ eINSTANCEOF GetType() { return eTYPE_THEENDPORTALTILEENTITY; }
+ static TileEntity *create() { return new TheEndPortalTileEntity(); }
+
+ // 4J Added
+ shared_ptr<TileEntity> clone();
+}; \ No newline at end of file