blob: f930e227188820e311cc02a7181865afbad05259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <crepe/api/Scene.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/Event.h>
#include <crepe/util/OptionalRef.h>
class CreateZapperEvent : public crepe::Event {};
class ZapperPoolSubScene {
public:
ZapperPoolSubScene(crepe::Scene & scene);
private:
crepe::GameObject controller;
private:
static constexpr size_t POOL_SIZE = 4;
};
|