mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 19:13:37 +00:00
12 lines
341 B
C++
12 lines
341 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
#include "../Util/Definitions.h"
|
|
|
|
class SoulSandTile : public Tile {
|
|
public:
|
|
SoulSandTile(int id);
|
|
virtual std::optional<AABB> getAABB(Level* level, int x, int y, int z);
|
|
virtual void entityInside(Level* level, int x, int y, int z,
|
|
std::shared_ptr<Entity> entity);
|
|
};
|