LeviLamina
Loading...
Searching...
No Matches
ScriptCurrentThemeColorChangeAfterEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace ScriptModuleMinecraft { class ScriptRGBA; }
8namespace Scripting { struct ClassBinding; }
9// clang-format on
10
11namespace Editor::ScriptModule {
12
13struct ScriptCurrentThemeColorChangeAfterEvent {
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ScriptCurrentThemeColorChangeAfterEvent& operator=(ScriptCurrentThemeColorChangeAfterEvent const&);
24 ScriptCurrentThemeColorChangeAfterEvent(ScriptCurrentThemeColorChangeAfterEvent const&);
25 ScriptCurrentThemeColorChangeAfterEvent();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCNAPI
32
34 // NOLINTEND
35
36public:
37 // static functions
38 // NOLINTBEGIN
39 MCNAPI static ::Scripting::ClassBinding bind();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(::std::string colorKey, ::ScriptModuleMinecraft::ScriptRGBA const& color);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace Editor::ScriptModule
Definition ScriptRGBA.h:16
MCAPI ScriptCurrentThemeColorChangeAfterEvent(::std::string colorKey, ::ScriptModuleMinecraft::ScriptRGBA const &color)
static MCAPI ::Scripting::ClassBinding bind()
MCAPI void * $ctor(::std::string colorKey, ::ScriptModuleMinecraft::ScriptRGBA const &color)
Definition ClassBinding.h:19
Definition Alias.h:14