This will not build; working on refactoring

This commit is contained in:
Kayne Ruse
2014-04-13 03:37:21 +10:00
parent 0c6537fb36
commit 7fe71c60d0
5 changed files with 92 additions and 26 deletions
+18 -1
View File
@@ -22,8 +22,25 @@
#ifndef PLAYERENTITY_HPP_
#define PLAYERENTITY_HPP_
#include <string>
struct PlayerEntity {
//TODO: stuff
int clientIndex;
std::string handle;
std::string avatar;
int level;
int exp;
int maxHP;
int health;
int maxMP;
int mana;
int attack;
int defence;
int intelligence;
int resistance;
float accuracy;
float evasion;
float luck;
};
#endif