mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 02:26:29 +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;
|
|
}; |