mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-22 02:35:26 +00:00
10 lines
260 B
C++
10 lines
260 B
C++
#include "stdafx.h"
|
|
#include "TheEndPortalTileEntity.h"
|
|
|
|
// 4J Added
|
|
shared_ptr<TileEntity> TheEndPortalTileEntity::clone()
|
|
{
|
|
shared_ptr<TheEndPortalTileEntity> result = std::make_shared<TheEndPortalTileEntity>();
|
|
TileEntity::clone(result);
|
|
return result;
|
|
} |