Partial rewrite of server_application.cpp

I've also fixed some other issues along the way. However, the next step
requires support for multiple rooms. Finally.
This commit is contained in:
Kayne Ruse
2014-06-07 01:14:54 +10:00
parent 170096b5db
commit cac273da5e
7 changed files with 131 additions and 131 deletions
+2 -1
View File
@@ -30,6 +30,7 @@
#include "SDL/SDL_net.h"
#define NETWORK_VERSION 20140607
#define PACKET_STRING_SIZE 100
struct SerialPacketBase {
@@ -39,7 +40,7 @@ struct SerialPacketBase {
typedef SerialPacketType Type;
virtual ~SerialPacketBase();
virtual ~SerialPacketBase() {};
};
typedef SerialPacketBase SerialPacket;