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
+10
View File
@@ -25,6 +25,16 @@
using namespace std;
//-------------------------
//Quick and dirty
//-------------------------
static std::string itos(int i) {
char buffer[20];
snprintf(buffer, 20, "%d", i);
return std::string(buffer);
}
//-------------------------
//Public access members
//-------------------------
-1
View File
@@ -24,7 +24,6 @@
#include "base_scene.hpp"
#include "utilities.hpp"
#include "defines.hpp"
#include "singleton.hpp"
#include "packet.hpp"
+10
View File
@@ -25,6 +25,16 @@
using namespace std;
//-------------------------
//Quick and dirty
//-------------------------
static std::string itos(int i) {
char buffer[20];
snprintf(buffer, 20, "%d", i);
return std::string(buffer);
}
//-------------------------
//Public access members
//-------------------------
+6 -2
View File
@@ -24,11 +24,9 @@
#include "base_scene.hpp"
#include "utilities.hpp"
#include "defines.hpp"
#include "singleton.hpp"
#include "server_entry.hpp"
#include "packet.hpp"
#include "network_queue.hpp"
#include "information_manager.hpp"
@@ -42,6 +40,12 @@
#include <vector>
#include <string>
struct ServerEntry {
std::string name;
IPaddress address;
//TODO: player count
};
class Lobby : public BaseScene {
public:
//Public access members