LeviLamina
Loading...
Searching...
No Matches
GestureEventData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec2.h"
7
8namespace OreUI {
9
10struct GestureEventData {
11public:
12 // GestureEventData inner types define
13 enum class EventType : int {
14 Unknown = 0,
15 Fling = 1,
16 PanStart = 2,
17 PanEnd = 3,
18 Tap = 4,
19 };
20
21public:
22 // member variables
23 // NOLINTBEGIN
24 struct {
25 ::ll::TypedStorage<4, 8, ::Vec2> delta;
26 } panDetails;
27 struct {
28 ::ll::TypedStorage<8, 8, ::std::chrono::milliseconds> duration;
29 } flingDetails;
30 ::ll::TypedStorage<4, 8, ::Vec2> currentLocation;
31 ::ll::TypedStorage<4, 8, ::Vec2> startLocation;
32 ::ll::TypedStorage<4, 4, ::OreUI::GestureEventData::EventType> type;
33 // NOLINTEND
34};
35
36} // namespace OreUI
Definition GestureEventData.h:7