From 6914bf4c65425172f3535b3a81936d7f75bdd42c Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 12 Aug 2013 07:55:53 +0200 Subject: [PATCH] Removed unused cServer::IsConnected() function. --- source/Server.h | 6 ++---- 1 file 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);