mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Add minetest.register_on_punchplayer
This commit is contained in:
parent
86a963caca
commit
c5b4e54174
6 changed files with 71 additions and 10 deletions
|
@ -23,7 +23,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
#include <map>
|
||||
|
||||
#include "cpp_api/s_base.h"
|
||||
#include "irr_v3d.h"
|
||||
|
||||
struct ToolCapabilities;
|
||||
|
||||
class ScriptApiPlayer
|
||||
: virtual public ScriptApiBase
|
||||
|
@ -38,6 +40,9 @@ public:
|
|||
void on_joinplayer(ServerActiveObject *player);
|
||||
void on_leaveplayer(ServerActiveObject *player);
|
||||
void on_cheat(ServerActiveObject *player, const std::string &cheat_type);
|
||||
bool on_punchplayer(ServerActiveObject *player,
|
||||
ServerActiveObject *hitter, float time_from_last_punch,
|
||||
const ToolCapabilities *toolcap, v3f dir, s16 damage);
|
||||
|
||||
void on_playerReceiveFields(ServerActiveObject *player,
|
||||
const std::string &formname,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue