diff options
Diffstat (limited to 'Minecraft.World/SoulSandTile.h')
| -rw-r--r-- | Minecraft.World/SoulSandTile.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Minecraft.World/SoulSandTile.h b/Minecraft.World/SoulSandTile.h new file mode 100644 index 00000000..b461de84 --- /dev/null +++ b/Minecraft.World/SoulSandTile.h @@ -0,0 +1,11 @@ +#pragma once +#include "Tile.h" +#include "Definitions.h" + +class SoulSandTile : public Tile +{ +public: + SoulSandTile(int id); + virtual AABB *getAABB(Level *level, int x, int y, int z); + virtual void entityInside(Level *level, int x, int y, int z, shared_ptr<Entity> entity); +};
\ No newline at end of file |
