blob: 870d6d507042a931b8830c4b0da5a2b7b5a357c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef ENTITYFACTORY_H
#define ENTITYFACTORY_H
#include <string>
class Entity;
class Map;
class EntityFactory {
public:
static std::shared_ptr<Entity> createNamedEntity(const std::string name);
};
#endif
|