LeviLamina
Loading...
Searching...
No Matches
MouseBindingRegisterPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/editor/network/NetworkPayload.h"
7
8// auto generated forward declare list
9// clang-format off
10class HashedString;
11namespace Editor::Input { class MouseBinding; }
12namespace cereal { struct ReflectionCtx; }
13// clang-format on
14
15namespace Editor::Network {
16
17class MouseBindingRegisterPayload
18: public ::Editor::Network::NetworkPayload<::Editor::Network::MouseBindingRegisterPayload> {
19public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 MouseBindingRegisterPayload& operator=(MouseBindingRegisterPayload const&);
30 MouseBindingRegisterPayload(MouseBindingRegisterPayload const&);
31 MouseBindingRegisterPayload();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~MouseBindingRegisterPayload() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
43 ::HashedString const& contextId,
44 ::HashedString const& bindingId,
46 );
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCNAPI void* $ctor(
59 ::HashedString const& contextId,
60 ::HashedString const& bindingId,
62 );
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCNAPI void $dtor();
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
77
78} // namespace Editor::Network
Definition MouseBinding.h:15
MCAPI MouseBindingRegisterPayload(::HashedString const &contextId, ::HashedString const &bindingId, ::Editor::Input::MouseBinding const &binding)
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
MCAPI void * $ctor(::HashedString const &contextId, ::HashedString const &bindingId, ::Editor::Input::MouseBinding const &binding)
Definition NetworkPayload.h:8
Definition HashedString.h:5
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14