Added missing .h and fixed the boost sleep, it works fine on linux now.

This commit is contained in:
Xawotihs@gmail.com
2013-01-28 22:26:13 +00:00
parent faff7724d6
commit 48d45f2a65
2 changed files with 3 additions and 3 deletions

View File

@@ -38,8 +38,9 @@ public:
JNetwork();
~JNetwork();
void Update();
void getServerIp(string& aString);
int connect(string serverIP = "");
int connect(const string& serverIP = "");
bool isConnected();
bool isServer() { return serverIP == ""; };
static void ThreadProc(void* param);