From 44324ba5d6cac01048cc5cbecbff255ee56f2fc0 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 14 Mar 2015 16:13:11 -0400 Subject: Wrote simple factory to read map and entity data from XML files --- src/components.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components.h') diff --git a/src/components.h b/src/components.h index f5c66d4..3d80d1a 100644 --- a/src/components.h +++ b/src/components.h @@ -111,11 +111,11 @@ class StaticImageComponent : public Component { class SimpleColliderComponent : public Component { public: - SimpleColliderComponent(std::function callback); + SimpleColliderComponent(std::function callback); void receive(Game& game, Entity& entity, const Message& msg); private: - std::function callback; + std::function callback; }; #endif -- cgit 1.4.1