diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-10 10:19:02 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-10 10:19:02 +0100 |
commit | cb17c2aad3ca8c89d0f6d8305ba4f3a5c3c2a971 (patch) | |
tree | a652b86ac178052320ce7920e9cc450c84173656 /game/enemy/EnemyPool.h | |
parent | c1325d3e979e294fced8f80ce43dd1eb86d7f5df (diff) |
added to config enemy_pool_max
Diffstat (limited to 'game/enemy/EnemyPool.h')
-rw-r--r-- | game/enemy/EnemyPool.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/game/enemy/EnemyPool.h b/game/enemy/EnemyPool.h index ec96ac4..25f7fb8 100644 --- a/game/enemy/EnemyPool.h +++ b/game/enemy/EnemyPool.h @@ -1,11 +1,9 @@ #pragma once #include <crepe/api/Scene.h> - +#include "EnemyConfig.h" class EnemyPool { public: void create_enemies(crepe::Scene & scn); -private: - static constexpr int MAXIMUM_AMOUNT = 7; }; |