summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockFire.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockFire.h')
-rw-r--r--source/blocks/BlockFire.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/source/blocks/BlockFire.h b/source/blocks/BlockFire.h
new file mode 100644
index 000000000..0a5396096
--- /dev/null
+++ b/source/blocks/BlockFire.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "Block.h"
+
+
+class cBlockFireHandler : public cBlockHandler
+{
+public:
+ cBlockFireHandler(BLOCKTYPE a_BlockID);
+ virtual void OnClick(cWorld *a_World, cPlayer *a_Player, int a_X, int a_Y, int a_Z);
+ virtual bool IsClickedThrough();
+ virtual char GetDropCount();
+
+
+}; \ No newline at end of file