Began unifying the server and client side character classes

This commit won't build
This commit is contained in:
Kayne Ruse
2014-05-26 18:35:38 +10:00
parent d903c0df30
commit 1bde0ed3f7
5 changed files with 11 additions and 187 deletions
+9
View File
@@ -22,10 +22,19 @@
#ifndef SHAREDPARAMETERS_HPP_
#define SHAREDPARAMETERS_HPP_
#include "character_data.hpp"
#include "enemy_data.hpp"
#include <map>
struct SharedParameters {
int clientIndex = -1;
int accountIndex = -1;
int characterIndex = -1;
std::map<int, CharacterData> characterMap;
std::map<int, CombatData> combatMap;
std::map<int, enemyData> enemyMap;
};
#endif