Created skeleton for Server/Client logic.

This commit is contained in:
stiffly
2015-12-07 14:32:49 +01:00
parent 175762777d
commit 48339934b6
4 changed files with 50 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "Networking\Client.h"
Client::Client()
{
}
Client::~Client()
{
}
+11
View File
@@ -0,0 +1,11 @@
#include "Networking\Server.h"
Server::Server()
{
}
Server::~Server()
{
}