summaryrefslogtreecommitdiff
path: root/Player.h
diff options
context:
space:
mode:
Diffstat (limited to 'Player.h')
-rw-r--r--Player.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/Player.h b/Player.h
index 95e662b..ad08b56 100644
--- a/Player.h
+++ b/Player.h
@@ -12,8 +12,14 @@ class Player : public Creature {
// Kill the player, in the game sense
void kill();
+ // Enable or disable sprinting
+ void setSprint(bool s);
+ bool getSprint();
+
+ int getXVel();
+
private:
- // Nothing yet!
+ bool sprint;
};
#endif