diff options
author | madmaxoft <github@xoft.cz> | 2013-08-19 11:39:13 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-19 11:39:13 +0200 |
commit | 1a7912744ff2e0abfeae0d2d75af80d73209580c (patch) | |
tree | e5372cdfece1852c00ed7b0219ad77ee82ea1858 /source/Items/ItemHoe.h | |
parent | Fixed timed event wait on Linux. (diff) | |
download | cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.gz cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.bz2 cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.lz cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.xz cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.tar.zst cuberite-1a7912744ff2e0abfeae0d2d75af80d73209580c.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Items/ItemHoe.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/source/Items/ItemHoe.h b/source/Items/ItemHoe.h index 577463f21..7b6b3e6ac 100644 --- a/source/Items/ItemHoe.h +++ b/source/Items/ItemHoe.h @@ -3,9 +3,14 @@ #include "ItemHandler.h" #include "../World.h" -#include "../Player.h" +#include "../Entities/Player.h" -class cItemHoeHandler : public cItemHandler + + + + +class cItemHoeHandler : + public cItemHandler { public: cItemHoeHandler(int a_ItemType) @@ -28,4 +33,8 @@ public: } return false; } -};
\ No newline at end of file +} ; + + + + |