mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 08:23:36 +00:00
6 lines
116 B
C++
6 lines
116 B
C++
#pragma once
|
|
|
|
class EntityTile {
|
|
public:
|
|
virtual std::shared_ptr<TileEntity> newTileEntity(Level* level) = 0;
|
|
}; |