Pruning unneeded files

This commit is contained in:
Kayne Ruse
2013-07-15 16:36:02 +10:00
parent c4bcced984
commit ee3877b906
11 changed files with 50 additions and 171 deletions
+14 -4
View File
@@ -22,14 +22,10 @@
#ifndef SERVERAPPLICATION_HPP_
#define SERVERAPPLICATION_HPP_
#include "utilities.hpp"
#include "packet.hpp"
#include "singleton.hpp"
#include "network_queue.hpp"
#include "client_entry.hpp"
#include "player_entry.hpp"
#include "config_Utility.hpp"
#include "udp_network_utility.hpp"
#include "vector2.hpp"
@@ -40,6 +36,20 @@
#include <string>
#include <algorithm>
struct ClientEntry {
int index;
IPaddress address;
};
struct PlayerEntry {
int index;
int clientIndex;
std::string handle;
std::string avatar;
Vector2 position;
Vector2 motion;
};
class ServerApplication {
public:
ServerApplication();