summary refs log tree commit diff stats
path: root/src/entityfactory.h
blob: a35b5f7d74771b63a867d4b76cc06b8590465e11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef ENTITYFACTORY_H
#define ENTITYFACTORY_H

#include "entity.h"
#include <memory>
#include <string>
#include <map>
#include "map.h"

class EntityFactory {
  public:
    static std::shared_ptr<Entity> createNamedEntity(const std::string name, const Map& map);
};

#endif