Initial first steps in pulling the SFML event processing out of the gui::fsm so that I can handle more complex things like drag and drop.
This commit is contained in:
parent
0674908e49
commit
5aa54d875f
9 changed files with 194 additions and 146 deletions
|
@ -1,11 +1,12 @@
|
|||
#include <catch2/catch_test_macros.hpp>
|
||||
#include <fmt/core.h>
|
||||
#include <string>
|
||||
#include "event_router.hpp"
|
||||
#include "gui/event_router.hpp"
|
||||
|
||||
using namespace fmt;
|
||||
using enum routing::Event;
|
||||
using enum routing::State;
|
||||
using namespace gui;
|
||||
using enum gui::routing::Event;
|
||||
using enum gui::routing::State;
|
||||
|
||||
using EventScript = std::vector<routing::Event>;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue