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

#include <crepe/api/Scene.h>

class EnemyPool {
public:
	void create_enemies(crepe::Scene & scn);

private:
	static constexpr int MAXIMUM_AMOUNT = 7;
};