TcpServer's OnMessage is now an vector called OnMessageFunctions, each plugin will occupy an index in this vector

Readded receive_data method to VoidNetClient.hpp
Minor fixes
This commit is contained in:
xX-TheDoctor-Xx
2016-08-15 17:46:29 +01:00
parent 8ceefbd9fe
commit e5ca02be0d
9 changed files with 20 additions and 11 deletions

View File

@ -30,9 +30,10 @@ struct VoidNetClientAPI
static void Receive();
private:
static void receive_data();
static TcpClient client;
static uint16 id;
static bool receive;
};
#endif