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