LeviLamina
Loading...
Searching...
No Matches
BindingInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cereal { struct ReflectionCtx; }
8// clang-format on
9
10namespace Editor::Input {
11
12struct BindingInfo {
13public:
14 // member variables
15 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 BindingInfo& operator=(BindingInfo const&);
25 BindingInfo(BindingInfo const&);
26 BindingInfo();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI ::Editor::Input::BindingInfo& operator=(::Editor::Input::BindingInfo&&);
32
33 MCNAPI ~BindingInfo();
34 // NOLINTEND
35
36public:
37 // static functions
38 // NOLINTBEGIN
39 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI_C void* $ctor(
46 ::std::string label,
47 bool canRebind,
48 ::std::optional<::std::string> tooltip,
49 ::std::optional<::std::string> actionId
50 );
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCNAPI void $dtor();
57 // NOLINTEND
58};
59
60} // namespace Editor::Input
Definition BindingInfo.h:12
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
MCAPI::Editor::Input::BindingInfo & operator=(::Editor::Input::BindingInfo &&)
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14