mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 08:03:41 +00:00
10 lines
329 B
C++
10 lines
329 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;
|
|
} |