LeviLamina
Loading...
Searching...
No Matches
CustomZoneControl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/input/TouchControl.h"
7
8// auto generated forward declare list
9// clang-format off
10class InputEventQueue;
11class RectangleArea;
13// clang-format on
14
15class CustomZoneControl : public ::TouchControl {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, uint const> mZoneName;
20 ::ll::TypedStorage<8, 64, ::std::function<bool()>> mCondition;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 CustomZoneControl();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual void
31 tick(::InputEventQueue& eventQueue, ::TouchPointResults& touchPointResults, int yAxisInversionFactor) /*override*/;
32
33 virtual ~CustomZoneControl() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI CustomZoneControl(uint zoneName, ::std::function<::RectangleArea()> area, ::std::function<bool()> condition);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(uint zoneName, ::std::function<::RectangleArea()> area, ::std::function<bool()> condition);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI void $tick(::InputEventQueue& eventQueue, ::TouchPointResults& touchPointResults, int yAxisInversionFactor);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
Definition CustomZoneControl.h:5
static MCAPI void ** $vftable()
Definition InputEventQueue.h:5
Definition RectangleArea.h:5
Definition TouchControl.h:5
Definition TouchPointResults.h:5