Add beginning tests of Network Play

This commit is contained in:
Kevin Slaughter
2003-09-09 10:21:06 +00:00
parent 24bfdd40ec
commit 89dbc35832
5 changed files with 142 additions and 19 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef NETWORKMANAGER_H
#define NETWORKMANAGER_H
#include "SDL_net.h"
class NetworkManager
{
public:
NetworkManager();
~NetworkManager();
bool Connect();
private:
int i;
};
extern NetworkManager* NETWORKMAN;
#endif