aboutsummaryrefslogtreecommitdiff
path: root/game/enemy/EnemyPool.h
blob: e2b9dddd9b5d3341571a1ddc15a216adcf94b527 (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 = 100;
};