From a197a92893cff416b63da359db8c8059c7f333bf Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Wed, 3 Jun 2015 22:11:59 +0200 Subject: Added remaining objects for game state --- include/spaceship.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/spaceship.h') 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; -- cgit v1.2.3