summary refs log tree commit diff stats
path: root/src/entityfactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entityfactory.h')
-rw-r--r--src/entityfactory.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/entityfactory.h b/src/entityfactory.h deleted file mode 100644 index 56f7216..0000000 --- a/src/entityfactory.h +++ /dev/null
@@ -1,15 +0,0 @@
1#ifndef ENTITYFACTORY_H
2#define ENTITYFACTORY_H
3
4#include <string>
5#include <map>
6
7class Entity;
8class Map;
9
10class EntityFactory {
11 public:
12 static std::shared_ptr<Entity> createNamedEntity(const std::string name, const std::map<std::string, int>& items);
13};
14
15#endif