LeviLamina
Loading...
Searching...
No Matches
KeyBinding.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/editor/input/KeyInputType.h"
7#include "mc/editor/input/Modifier.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace cereal { struct ReflectionCtx; }
12// clang-format on
13
14namespace Editor::Input {
15
16class KeyBinding {
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 KeyBinding& operator=(KeyBinding const&);
28 KeyBinding(KeyBinding const&);
29 KeyBinding();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCNAPI KeyBinding(int key, ::Editor::Input::Modifier modifier, ::Editor::Input::KeyInputType inputType);
35
36 MCNAPI bool isValid() const;
37
38#ifdef LL_PLAT_C
39 MCNAPI bool operator==(::Editor::Input::KeyBinding const&) const;
40#endif
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCNAPI void* $ctor(int key, ::Editor::Input::Modifier modifier, ::Editor::Input::KeyInputType inputType);
53 // NOLINTEND
54};
55
56} // namespace Editor::Input
Definition KeyBinding.h:16
MCAPI bool isValid() const
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
MCAPI KeyBinding(int key, ::Editor::Input::Modifier modifier, ::Editor::Input::KeyInputType inputType)
MCAPI void * $ctor(int key, ::Editor::Input::Modifier modifier, ::Editor::Input::KeyInputType inputType)
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14