LeviLamina
Loading...
Searching...
No Matches
KeyboardAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // KeyboardAction inner types define
8 enum : int {
9 Keyup = 0,
10 Keydown = 1,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 4, int> state;
17 ::ll::TypedStorage<1, 1, uchar> key;
18 ::ll::TypedStorage<4, 4, int> controllerId;
19 ::ll::TypedStorage<4, 4, int> lshiftState;
20 ::ll::TypedStorage<4, 4, int> controlState;
21 ::ll::TypedStorage<4, 4, int> menuState;
22 ::ll::TypedStorage<1, 1, bool> isRepeatedEvent;
23 // NOLINTEND
24};
Definition KeyboardAction.h:5