LeviLamina
Loading...
Searching...
No Matches
TouchEventData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml {
6
7struct TouchEventData {
8public:
9 // TouchEventData inner types define
10 enum class EventType : int {
11 TouchMove = 0,
12 TouchDown = 1,
13 TouchUp = 2,
14 };
15
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::UntypedStorage<4, 4> mUnk2c2108;
20 ::ll::UntypedStorage<4, 4> mUnk8967ed;
21 ::ll::UntypedStorage<4, 4> mUnk1d254f;
22 ::ll::UntypedStorage<4, 4> mUnkee1a09;
23 ::ll::UntypedStorage<1, 7> mUnk478d1b;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 TouchEventData& operator=(TouchEventData const&);
29 TouchEventData(TouchEventData const&);
30 TouchEventData();
31};
32
33} // namespace cohtml
Definition TouchEventData.h:7