LeviLamina
Loading...
Searching...
No Matches
TouchEventData.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 TouchEventData {
11public:
12 // TouchEventData inner types define
13 enum class EventType : int {
14 TouchMove = 0,
15 TouchDown = 1,
16 TouchUp = 2,
17 };
18
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 8, ::Vec2> pos;
23 ::ll::TypedStorage<4, 4, uint> id;
24 ::ll::TypedStorage<4, 4, ::OreUI::TouchEventData::EventType> type;
25 // NOLINTEND
26};
27
28} // namespace OreUI
Definition TouchEventData.h:7