summaryrefslogtreecommitdiff
path: root/include/enemy_bullet.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/enemy_bullet.h
parente42727977b3dab7aecff0ce8afa5b16abcd8b26b (diff)
Added remaining objects for game state
Diffstat (limited to 'include/enemy_bullet.h')
-rw-r--r--include/enemy_bullet.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/enemy_bullet.h b/include/enemy_bullet.h
index f08d988..db3fcf9 100644
--- a/include/enemy_bullet.h
+++ b/include/enemy_bullet.h
@@ -3,6 +3,8 @@
class EnemyBullet {
public:
EnemyBullet(int x, int y);
+ const static char ALIEN_MAP_CHAR = '|';
+ const static char ENEMY_MISSILE_MAP_CHAR = 'i';
private:
int x;
int y;