mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-22 02:35:26 +00:00
7 lines
108 B
C++
7 lines
108 B
C++
#pragma once
|
|
|
|
class EntityTile
|
|
{
|
|
public:
|
|
virtual shared_ptr<TileEntity> newTileEntity(Level *level) = 0;
|
|
}; |