diff options
author | quou <quou@disroot.org> | 2023-05-05 09:25:39 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2023-05-05 09:25:39 +1000 |
commit | 280552fa4750b5dac9243782f9c0a7e0b7eea6f8 (patch) | |
tree | 6385dc740cc965dad7dc628e8b10738724ec0a42 /game_config.h | |
parent | 0a083f5a9a747083bbc3a1f0689e76ac5fc3a3b9 (diff) |
Add a basic enemy.
Diffstat (limited to 'game_config.h')
-rw-r--r-- | game_config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/game_config.h b/game_config.h index 7bb6cdd..0c97a8d 100644 --- a/game_config.h +++ b/game_config.h @@ -4,4 +4,10 @@ #define player_move_speed (3 << fbits) #define player_bullet_speed (10 << fbits) +#define skull_hp 3 +#define skull_speed (1 << fbits) + +#define skull_shoot_cooldown 15 +#define enemy_bullet_speed 10 + #endif |