LeviLamina
Loading...
Searching...
No Matches
ScriptLogProperties.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { struct EnumBinding; }
8namespace Scripting { struct InterfaceBinding; }
9// clang-format on
10
11namespace Editor::ScriptModule {
12
13class ScriptLogProperties {
14public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ScriptLogProperties();
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
33
34 MCNAPI ::Editor::ScriptModule::ScriptLogProperties& operator=(::Editor::ScriptModule::ScriptLogProperties&&);
35
36 MCNAPI ::Editor::ScriptModule::ScriptLogProperties& operator=(::Editor::ScriptModule::ScriptLogProperties const&);
37
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCNAPI static ::Scripting::InterfaceBinding bindScript();
45
46 MCNAPI static ::Scripting::EnumBinding bindScriptLogChannel();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
53
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCNAPI void $dtor();
61 // NOLINTEND
62};
63
64} // namespace Editor::ScriptModule
Definition ScriptLogProperties.h:13
MCAPI ScriptLogProperties(::Editor::ScriptModule::ScriptLogProperties const &)
MCAPI void * $ctor(::Editor::ScriptModule::ScriptLogProperties const &)
MCAPI::Editor::ScriptModule::ScriptLogProperties & operator=(::Editor::ScriptModule::ScriptLogProperties const &)
MCAPI::Editor::ScriptModule::ScriptLogProperties & operator=(::Editor::ScriptModule::ScriptLogProperties &&)
static MCAPI ::Scripting::InterfaceBinding bindScript()
static MCAPI ::Scripting::EnumBinding bindScriptLogChannel()
MCAPI ScriptLogProperties(::Editor::ScriptModule::ScriptLogProperties &&)
MCAPI void * $ctor(::Editor::ScriptModule::ScriptLogProperties &&)
Definition EnumBinding.h:15
Definition InterfaceBinding.h:16
Definition Alias.h:14