diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockPluginInterface.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Blocks/BlockPluginInterface.h b/src/Blocks/BlockPluginInterface.h new file mode 100644 index 000000000..3a36c40b1 --- /dev/null +++ b/src/Blocks/BlockPluginInterface.h @@ -0,0 +1,14 @@ + +#pragma once + +/** This interface is used to decouple block handlers from the cPluginManager dependancy through cWorld. +The block handlers call this interface, which is then implemented by the specific classes that +the caller provides. +*/ +class cBlockPluginInterface +{ +public: + virtual ~cBlockPluginInterface() {} + + 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; +}; |