mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-10 19:19:01 +02:00
15 lines
455 B
C++
15 lines
455 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
|
|
class TileEntity;
|
|
|
|
class EntityTile : public Tile
|
|
{
|
|
protected:
|
|
EntityTile(int id, Material *material, bool isSolidRender = true);
|
|
public:
|
|
virtual void onPlace(Level *level, int x, int y, int z);
|
|
virtual void onRemove(Level *level, int x, int y, int z, int id, int data);
|
|
virtual shared_ptr<TileEntity> newTileEntity(Level *level) = 0;
|
|
virtual void triggerEvent(Level *level, int x, int y, int z, int b0, int b1);
|
|
}; |