From 4b4125e234cb727c70822e0a1fce0688c357741e Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 19 Mar 2015 16:15:47 -0400 Subject: Implemented a simple AI --- src/entityfactory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/entityfactory.h') diff --git a/src/entityfactory.h b/src/entityfactory.h index 870d6d5..56f7216 100644 --- a/src/entityfactory.h +++ b/src/entityfactory.h @@ -2,13 +2,14 @@ #define ENTITYFACTORY_H #include +#include class Entity; class Map; class EntityFactory { public: - static std::shared_ptr createNamedEntity(const std::string name); + static std::shared_ptr createNamedEntity(const std::string name, const std::map& items); }; #endif -- cgit 1.4.1