summaryrefslogtreecommitdiff
path: root/Player.h
diff options
context:
space:
mode:
Diffstat (limited to 'Player.h')
-rw-r--r--Player.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Player.h b/Player.h
new file mode 100644
index 0000000..95e662b
--- /dev/null
+++ b/Player.h
@@ -0,0 +1,19 @@
+#ifndef PLAYER_H
+#define PLAYER_H
+
+#include "Creature.h"
+
+class Player : public Creature {
+ public:
+ Player();
+
+ void jump();
+
+ // Kill the player, in the game sense
+ void kill();
+
+ private:
+ // Nothing yet!
+};
+
+#endif