LeviLamina
Loading...
Searching...
No Matches
ContextKeyBinding.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Editor::Input { class KeyBinding; }
8namespace Editor::Input { struct BindingInfo; }
9// clang-format on
10
11namespace Editor::Input {
12
13class ContextKeyBinding {
14public:
15 // member variables
16 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ContextKeyBinding& operator=(ContextKeyBinding const&);
27 ContextKeyBinding(ContextKeyBinding const&);
28 ContextKeyBinding();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCNAPI_C void* $ctor(::Editor::Input::ContextKeyBinding const&);
40
41 MCNAPI_C void* $ctor(
42 ::Editor::Input::KeyBinding const& binding,
44 ::std::function<void(::Editor::Input::KeyBinding const&, ::Editor::Input::KeyBinding const&, bool)> modifiedFn
45 );
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI_C void $dtor();
52 // NOLINTEND
53};
54
55} // namespace Editor::Input
Definition ContextKeyBinding.h:13
Definition KeyBinding.h:12
Definition BindingInfo.h:12
Definition Alias.h:14