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