diff options
author | rubenwardy <rw@rubenwardy.com> | 2023-02-27 22:58:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 22:58:41 +0000 |
commit | 39f4d26177ec1c8f246133c532a42ef7429bc36d (patch) | |
tree | 910b6a6635adf37eaba1d7410e83fad14f15bb90 /src/client/client.h | |
parent | fbbdae93ee324584089efaf8e880a1378f6a2ad6 (diff) | |
download | minetest-39f4d26177ec1c8f246133c532a42ef7429bc36d.tar.xz |
Add minetest.get_player_window_information() (#12367)
Diffstat (limited to 'src/client/client.h')
-rw-r--r-- | src/client/client.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/client.h b/src/client/client.h index 44a0de719..5ed5c6e9a 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -38,6 +38,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "network/address.h" #include "network/peerhandler.h" #include "gameparams.h" +#include "clientdynamicinfo.h" #include <fstream> #include "util/numeric.h" @@ -251,6 +252,7 @@ public: void sendRespawn(); void sendReady(); void sendHaveMedia(const std::vector<u32> &tokens); + void sendUpdateClientInfo(const ClientDynamicInfo &info); ClientEnvironment& getEnv() { return m_env; } ITextureSource *tsrc() { return getTextureSource(); } |