mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 15:53:40 +00:00
10 lines
311 B
C++
10 lines
311 B
C++
#include "../../Build/stdafx.h"
|
|
#include "TheEndPortalTileEntity.h"
|
|
|
|
// 4J Added
|
|
std::shared_ptr<TileEntity> TheEndPortalTileEntity::clone()
|
|
{
|
|
std::shared_ptr<TheEndPortalTileEntity> result = std::shared_ptr<TheEndPortalTileEntity>( new TheEndPortalTileEntity() );
|
|
TileEntity::clone(result);
|
|
return result;
|
|
} |