aboutsummaryrefslogtreecommitdiff
path: root/frontend/Player.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/Player.h')
-rw-r--r--frontend/Player.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/frontend/Player.h b/frontend/Player.h
index c5fbb1e..ae3c520 100644
--- a/frontend/Player.h
+++ b/frontend/Player.h
@@ -18,8 +18,12 @@ class Player {
typedef FollowupAction Cmd(Argv);
private:
- unsigned int health_points = 0;
- unsigned int attack_chance = 0;
+ std::string name;
+ unsigned int health_points = 20;
+ float attack_chance = 0.4;
+ // TODO: WeaponObject[]
+ // TODO: GoldObject[]
+ // TODO: ArmorObject[]
public:
Player(Dungeon & dungeon);