diff options
Diffstat (limited to 'src/crepe/api/EventHandler.cpp')
-rw-r--r-- | src/crepe/api/EventHandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/crepe/api/EventHandler.cpp b/src/crepe/api/EventHandler.cpp new file mode 100644 index 0000000..186ec9c --- /dev/null +++ b/src/crepe/api/EventHandler.cpp @@ -0,0 +1,6 @@ +#include "EventHandler.h" + +using namespace crepe; + +// Implementation of IEventHandlerWrapper::exec +bool IEventHandlerWrapper::exec(const Event & e) { return call(e); } |