diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-06 10:46:11 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-06 10:46:11 +0100 |
commit | 36942c357663a033582a1dfb39af0d3ab15afd0c (patch) | |
tree | 4edf5b5dcdd5fe6ec5011c89583324d291a00850 /game/enemy/EnemyPool.h | |
parent | cf6ca6be5a9deac4de921f50d0aedf6a6156e0f4 (diff) |
start of enemypool and creation
Diffstat (limited to 'game/enemy/EnemyPool.h')
-rw-r--r-- | game/enemy/EnemyPool.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/game/enemy/EnemyPool.h b/game/enemy/EnemyPool.h new file mode 100644 index 0000000..e2b9ddd --- /dev/null +++ b/game/enemy/EnemyPool.h @@ -0,0 +1,10 @@ +#pragma once + +#include <crepe/api/Scene.h> + +class EnemyPool { +public: + void create_enemies(crepe::Scene & scn); +private: + static constexpr int MAXIMUM_AMOUNT = 100; +}; |