diff options
author | madmaxoft <github@xoft.cz> | 2013-08-12 07:55:53 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-12 07:55:53 +0200 |
commit | 6914bf4c65425172f3535b3a81936d7f75bdd42c (patch) | |
tree | 367c14a3f2bf66d21735e68d79c23310c596eeaa | |
parent | Merge branch 'master' into PerWorldThreads (diff) | |
download | cuberite-6914bf4c65425172f3535b3a81936d7f75bdd42c.tar cuberite-6914bf4c65425172f3535b3a81936d7f75bdd42c.tar.gz cuberite-6914bf4c65425172f3535b3a81936d7f75bdd42c.tar.bz2 cuberite-6914bf4c65425172f3535b3a81936d7f75bdd42c.tar.lz cuberite-6914bf4c65425172f3535b3a81936d7f75bdd42c.tar.xz cuberite-6914bf4c65425172f3535b3a81936d7f75bdd42c.tar.zst cuberite-6914bf4c65425172f3535b3a81936d7f75bdd42c.zip |
-rw-r--r-- | source/Server.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/Server.h b/source/Server.h index a00485fa2..176c82a40 100644 --- a/source/Server.h +++ b/source/Server.h @@ -46,11 +46,9 @@ public: // tolua_export int GetNumPlayers(void) const { return m_NumPlayers; } void SetMaxPlayers(int a_MaxPlayers) { m_MaxPlayers = a_MaxPlayers; } - // tolua_end + void BroadcastChat(const AString & a_Message, const cClientHandle * a_Exclude = NULL); - // bool IsConnected(void) const { return m_bIsConnected;} // returns connection status - - void BroadcastChat(const AString & a_Message, const cClientHandle * a_Exclude = NULL); // tolua_export + // tolua_end bool Start(void); |