mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-28 05:13:38 +00:00
11 lines
167 B
C++
11 lines
167 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
class TileEntity;
|
|
class Level;
|
|
|
|
class EntityTile {
|
|
public:
|
|
virtual std::shared_ptr<TileEntity> newTileEntity(Level* level) = 0;
|
|
}; |