diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-07 13:04:49 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-07 13:04:49 +0100 |
commit | 6d69c8ef6b663bd6716b441cc7d01164c7e33dfc (patch) | |
tree | cbf6d4a4d7f099ca662bed00edc627212511a99e /game/prefab/ZapperPoolSubScene.h | |
parent | 87ae4d186ad64531e96fd3e121112f2787894295 (diff) |
more WIP zapperpool
Diffstat (limited to 'game/prefab/ZapperPoolSubScene.h')
-rw-r--r-- | game/prefab/ZapperPoolSubScene.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/game/prefab/ZapperPoolSubScene.h b/game/prefab/ZapperPoolSubScene.h new file mode 100644 index 0000000..79598ce --- /dev/null +++ b/game/prefab/ZapperPoolSubScene.h @@ -0,0 +1,21 @@ +#pragma once + +#include <vector> + +#include <crepe/api/Scene.h> +#include <crepe/api/GameObject.h> + +#include "ZapperObject.h" + +class ZapperPoolSubScene { +public: + ZapperPoolSubScene(crepe::Scene & scene); + +public: + crepe::GameObject controller; + std::vector<ZapperObject> zappers; + +private: + static constexpr size_t POOL_SIZE = 4; + +}; |