From 3383e8be9001826bf0d09f1fb73ad5013cc8627e Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Wed, 24 Nov 2010 19:57:03 +0000 Subject: Initial commit --- Player.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Player.h (limited to 'Player.h') 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 -- cgit v1.2.3