mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 14:43:36 +00:00
10 lines
314 B
C++
10 lines
314 B
C++
#include "../../Platform/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;
|
|
} |