aboutsummaryrefslogtreecommitdiff
path: root/components.h
diff options
context:
space:
mode:
Diffstat (limited to 'components.h')
-rw-r--r--components.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/components.h b/components.h
index 66304df..d288ac5 100644
--- a/components.h
+++ b/components.h
@@ -29,13 +29,26 @@ typedef struct {
int vx, vy;
} CBullet;
+typedef struct {
+ int hp;
+ int backpedal;
+ int shoot_timer;
+} CEnemy;
+
+typedef struct {
+ int vx, vy;
+} CDebris;
+
typedef enum {
ctype_sprite = 1 << 0,
ctype_position = 1 << 1,
ctype_animated = 1 << 2,
ctype_bullet = 1 << 3,
ctype_player_bullet = 1 << 4,
- ctype_enemy_bullet = 1 << 5
+ ctype_enemy_bullet = 1 << 5,
+ ctype_enemy = 1 << 6,
+ ctype_skull = 1 << 7,
+ ctype_debris = 1 << 8
} CType;
#endif