diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-02 15:59:36 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-02 15:59:36 +0100 |
commit | 42497847acd65c34b67f4c6c2a16320ecbe19c65 (patch) | |
tree | ca1faaae5c7d0fbd756f4cee56f61500ba0a12ed /src/Blocks/BlockPluginInterface.h | |
parent | Merge branch 'master' into GeneratingBenchmark2 (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/Blocks/BlockPluginInterface.h | 8 |
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; +}; |