diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-20 04:20:51 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-20 04:20:51 +0200 |
commit | 9099eec2a638bcf61bf46e86740458d933197577 (patch) | |
tree | dca1ae5c0f8fc89ebf55624b2988733d094af3bc /floormat/events.hpp | |
parent | e8a7d188eb186204dc8d8e25aa732e14fac96594 (diff) |
wip tests
Diffstat (limited to 'floormat/events.hpp')
-rw-r--r-- | floormat/events.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/floormat/events.hpp b/floormat/events.hpp index c7d36379..b5294d76 100644 --- a/floormat/events.hpp +++ b/floormat/events.hpp @@ -1,4 +1,5 @@ #pragma once +#include <Corrade/Containers/StringView.h> #include <Magnum/Math/Vector2.h> namespace floormat { @@ -32,11 +33,11 @@ struct mouse_scroll_event final { }; struct text_input_event final { - Containers::StringView text; + StringView text; }; struct text_editing_event final { - Containers::StringView text; + StringView text; int32_t start = 0, length = 0; }; |