summaryrefslogtreecommitdiff
path: root/include/spaceship.h
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-06-03 22:11:59 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-06-03 22:11:59 +0200
commita197a92893cff416b63da359db8c8059c7f333bf (patch)
tree7ff3c908a73231edda1f2ba7308a98da599f9169 /include/spaceship.h
parente42727977b3dab7aecff0ce8afa5b16abcd8b26b (diff)
Added remaining objects for game state
Diffstat (limited to 'include/spaceship.h')
-rw-r--r--include/spaceship.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/spaceship.h b/include/spaceship.h
index e4ee37b..5e6afd0 100644
--- a/include/spaceship.h
+++ b/include/spaceship.h
@@ -3,6 +3,8 @@
class Spaceship {
public:
Spaceship(int x, int y);
+ const static char ENEMY_MAP_CHAR = 'V';
+ const static char PLAYER_MAP_CHAR = 'A';
private:
int x;
int y;