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