summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockPluginInterface.h
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-02-02 15:59:36 +0100
committerTycho <work.tycho+git@gmail.com>2014-02-02 15:59:36 +0100
commit42497847acd65c34b67f4c6c2a16320ecbe19c65 (patch)
treeca1faaae5c7d0fbd756f4cee56f61500ba0a12ed /src/Blocks/BlockPluginInterface.h
parentMerge branch 'master' into GeneratingBenchmark2 (diff)
downloadcuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.gz
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.bz2
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.lz
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.xz
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.tar.zst
cuberite-42497847acd65c34b67f4c6c2a16320ecbe19c65.zip
Diffstat (limited to 'src/Blocks/BlockPluginInterface.h')
-rw-r--r--src/Blocks/BlockPluginInterface.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Blocks/BlockPluginInterface.h b/src/Blocks/BlockPluginInterface.h
new file mode 100644
index 000000000..7428c9a7a
--- /dev/null
+++ b/src/Blocks/BlockPluginInterface.h
@@ -0,0 +1,8 @@
+
+#pragma once
+
+class cBlockPluginInterface
+{
+public:
+ virtual bool CallHookBlockToPickups(cEntity * a_Digger, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, cItems & a_Pickups) = 0;
+};