diff options
Diffstat (limited to 'game/enemy/EnemyPool.h')
-rw-r--r-- | game/enemy/EnemyPool.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/game/enemy/EnemyPool.h b/game/enemy/EnemyPool.h new file mode 100644 index 0000000..f4d6765 --- /dev/null +++ b/game/enemy/EnemyPool.h @@ -0,0 +1,11 @@ +#pragma once + +#include <crepe/api/Scene.h> + +class EnemyPool { +public: + void create_enemies(crepe::Scene & scn); + +private: + static constexpr int MAXIMUM_AMOUNT = 10; +}; |