summaryrefslogtreecommitdiff
path: root/include/enemy_bullet.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/enemy_bullet.h')
-rw-r--r--include/enemy_bullet.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/enemy_bullet.h b/include/enemy_bullet.h
index db3fcf9..ff3b001 100644
--- a/include/enemy_bullet.h
+++ b/include/enemy_bullet.h
@@ -1,11 +1,12 @@
#pragma once
-class EnemyBullet {
+#include "game_entity.h"
+
+class EnemyBullet: public GameEntity
+{
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;
};