mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-08-08 08:22:02 +00:00
7 lines
114 B
C++
7 lines
114 B
C++
#pragma once
|
|
|
|
class EntityTile
|
|
{
|
|
public:
|
|
virtual shared_ptr<TileEntity> newTileEntity(Level *level) = 0;
|
|
}; |