scripting: on_interact (right click on block) callback

This commit is contained in:
MihailRis
2023-12-29 00:31:21 +03:00
parent 2b4e6c1a14
commit 2c75a0bee4
5 changed files with 18 additions and 0 deletions
+1
View File
@@ -21,6 +21,7 @@ namespace scripting {
void random_update_block(const Block* block, int x, int y, int z);
void on_block_placed(Player* player, const Block* block, int x, int y, int z);
void on_block_broken(Player* player, const Block* block, int x, int y, int z);
void on_block_interact(Player* player, const Block* block, int x, int y, int z);
void load_block_script(std::string prefix, fs::path file, block_funcs_set* funcsset);
void close();
}