diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-01-22 00:20:55 +0100 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-03-13 23:56:05 +0100 |
commit | 9978f5af828550d819890fed1fc56d65838a2c4c (patch) | |
tree | 34ba1ca2f7b2607fcd60166419a3ca9ab436e9bb /src/script/cpp_api/s_client.h | |
parent | cb3a61f8db6b7020dd69f7786a1086f6fe014dfc (diff) | |
download | minetest-9978f5af828550d819890fed1fc56d65838a2c4c.tar.gz minetest-9978f5af828550d819890fed1fc56d65838a2c4c.tar.bz2 minetest-9978f5af828550d819890fed1fc56d65838a2c4c.zip |
[CSM] Add on_death, on_hp_modification & oh_damage_taken callbacks (#5093)
* Add on_death callback
* Add on_hp_modification & on_damage_taken callbacks
* move preview code to preview.lua
Diffstat (limited to 'src/script/cpp_api/s_client.h')
-rw-r--r-- | src/script/cpp_api/s_client.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/script/cpp_api/s_client.h b/src/script/cpp_api/s_client.h index 08fdd8fc0..3155c7e67 100644 --- a/src/script/cpp_api/s_client.h +++ b/src/script/cpp_api/s_client.h @@ -32,5 +32,9 @@ public: // Chat message handlers bool on_sending_message(const std::string &message); bool on_receiving_message(const std::string &message); + + void on_damage_taken(int32_t damage_amount); + void on_hp_modification(int32_t newhp); + void on_death(); }; #endif |