summary refs log tree commit diff stats
path: root/src/entityfactory.h
blob: 7b8f399fe7828abf651a0177ed07672040b1057a (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, const Map& map);
};

#endif