Started Yaze implementation using ImGui and improving workflow from previous projects

This commit is contained in:
scawful
2022-06-08 23:22:01 -04:00
parent accf24c244
commit bdafdcf069
11 changed files with 476 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include "Event.h"
namespace yaze {
namespace Application {
namespace Events {
void Event::Assign(const std::function<void()>& event) { event_ = event; }
void Event::Trigger() const { event_(); }
} // namespace Events
} // namespace Application
} // namespace yaze