aboutsummaryrefslogtreecommitdiff
path: root/game/enemy/EnemyBulletPool.h
blob: ee53fc4ec957f6afb4a7c5407d470dd6c903e936 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <crepe/api/Scene.h>

class EnemyBulletPool {
public:
	void create_bullets(crepe::Scene & scn);

private:
	static constexpr int MAXIMUM_AMOUNT = 20;
};