Initial commit
This commit is contained in:
12
Minecraft.World/TheEndPortalTileEntity.h
Normal file
12
Minecraft.World/TheEndPortalTileEntity.h
Normal file
@@ -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();
|
||||
};
|
||||
Reference in New Issue
Block a user