LeviLamina
Loading...
Searching...
No Matches
OptionChange.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social::Events {
6
7class OptionChange {
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 OptionChange& operator=(OptionChange const&);
19 OptionChange(OptionChange const&);
20 OptionChange();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCNAPI_C void changeOption(::std::variant<bool, int, float, ::std::string> currentValue);
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCNAPI_C void* $ctor(
32 ::std::variant<bool, int, float, ::std::string> initialValue,
33 ::std::variant<bool, int, float, ::std::string> currentValue
34 );
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI_C void $dtor();
41 // NOLINTEND
42};
43
44} // namespace Social::Events
Definition Alias.h:14