mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-08 14:15:11 +00:00
10 lines
250 B
C++
10 lines
250 B
C++
#include "stdafx.h"
|
|
#include "EndGatewayTileEntity.h"
|
|
|
|
|
|
shared_ptr<TileEntity> EndGatewayTileEntity::clone()
|
|
{
|
|
shared_ptr<EndGatewayTileEntity> result = std::make_shared<EndGatewayTileEntity>();
|
|
TileEntity::clone(result);
|
|
return result;
|
|
} |