diff options
author | Vincent Glize <vincentglize@hotmail.fr> | 2017-04-08 08:20:30 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-04-08 08:20:30 +0200 |
commit | f73534640a18709921519ee43110292cf658e67f (patch) | |
tree | 3a318762bb4768e4826ae216c1aa6e5ab026a437 /src/script/cpp_api/s_client.h | |
parent | ff4fef570e8df6ce44ceb1d9071f860474eb1f95 (diff) | |
download | minetest-f73534640a18709921519ee43110292cf658e67f.tar.gz minetest-f73534640a18709921519ee43110292cf658e67f.tar.bz2 minetest-f73534640a18709921519ee43110292cf658e67f.zip |
[CSM] Add event on_connect player API lua (#5540)
* Add event on_connect player API lua
Diffstat (limited to 'src/script/cpp_api/s_client.h')
-rw-r--r-- | src/script/cpp_api/s_client.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/cpp_api/s_client.h b/src/script/cpp_api/s_client.h index 9afc66d61..50e5e0d8a 100644 --- a/src/script/cpp_api/s_client.h +++ b/src/script/cpp_api/s_client.h @@ -36,6 +36,8 @@ class ScriptApiClient : virtual public ScriptApiBase public: // Calls on_shutdown handlers void on_shutdown(); + + void on_connect(); // Chat message handlers bool on_sending_message(const std::string &message); |