blob: 6f6e297fc800d71857dac80ee34cdf8d803a3872 (
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/Event.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/Scene.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;
};
|