mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 23:28:11 +05:00
7 lines
108 B
C++
7 lines
108 B
C++
#pragma once
|
|
|
|
class EntityTile
|
|
{
|
|
public:
|
|
virtual shared_ptr<TileEntity> newTileEntity(Level *level) = 0;
|
|
}; |