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

#include <crepe/api/Scene.h>

class EnemyBulletPool {
public:
	void create_bullets(crepe::Scene & scn);
private:
	static constexpr int MAXIMUM_AMOUNT = 20;
};