diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2025-01-08 14:57:09 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2025-01-08 14:57:09 +0100 |
commit | 714c8798dd0998ea15b1ba697962a97c586457fe (patch) | |
tree | 86d36b17a71845cd4b5d16a0e9abd11df0d55c03 /game/enemy/EnemyBulletPool.h | |
parent | fbd7c84e13381922bf327e20c1abc65337142445 (diff) | |
parent | 0de6692dcb029540f4502c5a2f1a0c6634f7b61f (diff) |
Merge remote-tracking branch 'origin/wouter/enemyAI' into niels/game
Diffstat (limited to 'game/enemy/EnemyBulletPool.h')
-rw-r--r-- | game/enemy/EnemyBulletPool.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/game/enemy/EnemyBulletPool.h b/game/enemy/EnemyBulletPool.h new file mode 100644 index 0000000..ee53fc4 --- /dev/null +++ b/game/enemy/EnemyBulletPool.h @@ -0,0 +1,11 @@ +#pragma once + +#include <crepe/api/Scene.h> + +class EnemyBulletPool { +public: + void create_bullets(crepe::Scene & scn); + +private: + static constexpr int MAXIMUM_AMOUNT = 20; +}; |