aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/RedStoneItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/RedStoneItem.h')
-rw-r--r--Minecraft.World/RedStoneItem.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/Minecraft.World/RedStoneItem.h b/Minecraft.World/RedStoneItem.h
new file mode 100644
index 00000000..01be92ff
--- /dev/null
+++ b/Minecraft.World/RedStoneItem.h
@@ -0,0 +1,13 @@
+#pragma once
+using namespace std;
+
+#include "Item.h"
+
+ class RedStoneItem : public Item
+ {
+ public:
+ RedStoneItem(int id);
+
+ public:
+ virtual bool useOn(shared_ptr<ItemInstance> itemInstance, shared_ptr<Player> player, Level *level, int x, int y, int z, int face, float clickX, float clickY, float clickZ, bool bTestUseOnOnly=false);
+}; \ No newline at end of file