diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-02 18:11:53 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-02 18:11:53 +0100 |
commit | 1e4e6c4619696e95b7b3f19650fe32c6a42d18b6 (patch) | |
tree | 9e8416c008a2e8b4f5f86d30de0224f9021b40a1 /src/BlockInServerPluginInterface.h | |
parent | Removed register keyword from Messinne Twister (diff) | |
parent | Fixed dark oak and acacia placement. (diff) | |
download | cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.gz cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.bz2 cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.lz cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.xz cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.zst cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.zip |
Diffstat (limited to 'src/BlockInServerPluginInterface.h')
-rw-r--r-- | src/BlockInServerPluginInterface.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/BlockInServerPluginInterface.h b/src/BlockInServerPluginInterface.h new file mode 100644 index 000000000..e82435364 --- /dev/null +++ b/src/BlockInServerPluginInterface.h @@ -0,0 +1,19 @@ + +#pragma once + +#include "Blocks/BlockPluginInterface.h" +#include "World.h" +#include "Root.h" +#include "Bindings/PluginManager.h" + +class cBlockInServerPluginInterface : public cBlockPluginInterface +{ +public: + cBlockInServerPluginInterface(cWorld & a_World) : m_World(a_World) {} + virtual bool CallHookBlockToPickups(cEntity * a_Digger, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, cItems & a_Pickups) override + { + return cRoot::Get()->GetPluginManager()->CallHookBlockToPickups(&m_World, a_Digger, a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_BlockMeta, a_Pickups); + } +private: + cWorld & m_World; +}; |