LeviLamina
Loading...
Searching...
No Matches
TouchPadTouchEventData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // TouchPadTouchEventData inner types declare
8 // clang-format off
9 struct TouchPoint;
10 struct Resolution;
11 // clang-format on
12
13 // TouchPadTouchEventData inner types define
14 struct TouchPoint {};
15
16 struct Resolution {};
17
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, int> mTouchCount;
22 ::ll::TypedStorage<4, 32, ::TouchPadTouchEventData::TouchPoint[2]> mTouchPoints;
23 ::ll::TypedStorage<4, 8, ::TouchPadTouchEventData::Resolution> mResolution;
24 // NOLINTEND
25};
Definition TouchPadTouchEventData.h:16
Definition TouchPadTouchEventData.h:14
Definition TouchPadTouchEventData.h:5
Definition TouchPoint.h:5