Merge branch 'developer' into feature/Controller

# Conflicts:
#	CrystalPoint.cpp
#	Player.cpp
This commit is contained in:
2016-06-21 15:14:08 +02:00
21 changed files with 174 additions and 30 deletions
+7 -2
View File
@@ -6,6 +6,7 @@ class Player
{
private:
static Player* instance;
void levelUp();
public:
Player();
~Player();
@@ -23,10 +24,14 @@ public:
Weapon* leftWeapon;
Weapon* rightWeapon;
float health;
float xp;
float health, maxHp;
float xp, maxXp;
int level;
int crystals;
float speed;
void HpUp(int);
void HpDown(int);
void XpUp(int);
};