Engine puzzle completed

This commit is contained in:
sippeangelo
2015-11-30 17:02:24 +01:00
parent 52278d7bc2
commit 872879c013
62 changed files with 5344 additions and 113 deletions
+2 -3
View File
@@ -3,16 +3,15 @@
#include <typeinfo>
#include <functional>
#include <map>
#include <unordered_map>
#include <list>
#include <tuple>
#include "../Common.h"
#include "Event.h"
#define EVENT_SUBSCRIBE_MEMBER(relay, handler) \
relay = decltype(relay)(std::bind(handler, this, std::placeholders::_1)); \
EventBroker->Subscribe(relay);
m_EventBroker->Subscribe(relay);
class EventBroker;