summaryrefslogtreecommitdiff
path: root/include/spaceship.h
diff options
context:
space:
mode:
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;