diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-08 10:08:03 +0100 |
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-08 10:08:03 +0100 |
| commit | 7f7c5c56dce30d47c32fb57fad6d839d0990b054 (patch) | |
| tree | eebc8d3f4c332d969f4a66a566edd844bd43387c /game/enemy/EnemyPool.h | |
| parent | ceb41b7ae7e2734af954364b319fc0b6f2a86c2f (diff) | |
enemy spawn working + enemy shooting
Diffstat (limited to 'game/enemy/EnemyPool.h')
| -rw-r--r-- | game/enemy/EnemyPool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/enemy/EnemyPool.h b/game/enemy/EnemyPool.h index e2b9ddd..916b930 100644 --- a/game/enemy/EnemyPool.h +++ b/game/enemy/EnemyPool.h @@ -6,5 +6,5 @@ class EnemyPool { public: void create_enemies(crepe::Scene & scn); private: - static constexpr int MAXIMUM_AMOUNT = 100; + static constexpr int MAXIMUM_AMOUNT = 10; }; |