LeviLamina
Loading...
Searching...
No Matches
EditorScriptAPI.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/GeneratorType.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Editor { class ServiceProviderCollection; }
11namespace Scripting { class WeakLifetimeScope; }
12namespace Scripting { struct ClassBinding; }
13// clang-format on
14
15namespace Editor::API {
16
17class EditorScriptAPI {
18public:
19 // member variables
20 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 EditorScriptAPI& operator=(EditorScriptAPI const&);
33 EditorScriptAPI(EditorScriptAPI const&);
34 EditorScriptAPI();
35
36public:
37 // member functions
38 // NOLINTBEGIN
40
41 MCNAPI ::std::optional<::GeneratorType> _getWorldGeneratorType() const;
42
44 // NOLINTEND
45
46public:
47 // static functions
48 // NOLINTBEGIN
49 MCNAPI static ::Scripting::ClassBinding bindScript();
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63};
64
65} // namespace Editor::API
MCAPI EditorScriptAPI(::Editor::ServiceProviderCollection &services, ::Scripting::WeakLifetimeScope const &scope)
MCAPI void * $ctor(::Editor::ServiceProviderCollection &services, ::Scripting::WeakLifetimeScope const &scope)
static MCAPI ::Scripting::ClassBinding bindScript()
MCAPI ::std::optional<::GeneratorType > _getWorldGeneratorType() const
Definition ServiceProviderCollection.h:7
Definition WeakLifetimeScope.h:14
Definition ClassBinding.h:19
Definition Alias.h:14