aboutsummaryrefslogtreecommitdiff
path: root/backend/EnemyFactory.h
blob: 7aa8645f877b840e552320149730fb3f5684bd86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "Enemy.h"

class EnemyFactory {
public:
	static Enemy * create_enemy(const String & name = "", const String & description = "");

private:
	EnemyFactory() = delete;
};