diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-06 15:50:55 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-06 15:50:55 +0200 |
commit | e610149c0cc3516b61115541f2f4f78344a0bb2c (patch) | |
tree | b1205a15af51db02c9301f4ab8ecdd7527d13c10 /src/client/client.h | |
parent | a87805a9445f280ca71da322c4b32cf357744511 (diff) | |
download | dragonfireclient-e610149c0cc3516b61115541f2f4f78344a0bb2c.tar.xz |
Initial Commit
Diffstat (limited to 'src/client/client.h')
-rw-r--r-- | src/client/client.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/client.h b/src/client/client.h index 1e6ba4140..3c0c133e0 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -445,6 +445,10 @@ public: { return m_env.getLocalPlayer()->formspec_prepend; } + + void sendPlayerPos(); + MeshUpdateThread m_mesh_update_thread; + private: void loadMods(); bool checkBuiltinIntegrity(); @@ -459,7 +463,6 @@ private: void ReceiveAll(); - void sendPlayerPos(); void deleteAuthData(); // helper method shared with clientpackethandler @@ -492,7 +495,6 @@ private: MtEventManager *m_event; - MeshUpdateThread m_mesh_update_thread; ClientEnvironment m_env; ParticleManager m_particle_manager; std::unique_ptr<con::Connection> m_con; |