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

#include <crepe/api/Scene.h>

class EnemyPool {
public:
	void create_enemies(crepe::Scene & scn);
private:
	static constexpr int MAXIMUM_AMOUNT = 10;
};