LeviLamina
Loading...
Searching...
No Matches
CustomBiomeManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/editor/CustomBiomeManagerProvider.h"
7#include "mc/deps/game_refs/WeakRef.h"
8
9// auto generated forward declare list
10// clang-format off
13namespace mce { class UUID; }
14// clang-format on
15
16namespace Editor {
17
18class CustomBiomeManager : public ::Editor::CustomBiomeManagerProvider {
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 CustomBiomeManager& operator=(CustomBiomeManager const&);
28 CustomBiomeManager(CustomBiomeManager const&);
29 CustomBiomeManager();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~CustomBiomeManager() /*override*/ = default;
35
36 virtual ::WeakRef<::ICustomBiomeSource> buildCustomSource(::CustomBiomeSourceConfig const& config) /*override*/;
37
38 virtual bool destroyCustomSource(::mce::UUID id) /*override*/;
39
40 virtual ::WeakRef<::ICustomBiomeSource> getCustomSource(::mce::UUID const& id) /*override*/;
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCNAPI ::WeakRef<::ICustomBiomeSource> $buildCustomSource(::CustomBiomeSourceConfig const& config);
47
49
50 MCNAPI ::WeakRef<::ICustomBiomeSource> $getCustomSource(::mce::UUID const& id);
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
61
62} // namespace Editor
Definition CustomBiomeManagerProvider.h:17
MCAPI bool $destroyCustomSource(::mce::UUID id)
MCAPI ::WeakRef<::ICustomBiomeSource > $getCustomSource(::mce::UUID const &id)
static MCAPI void ** $vftable()
MCAPI ::WeakRef<::ICustomBiomeSource > $buildCustomSource(::CustomBiomeSourceConfig const &config)
Definition ICustomBiomeSource.h:20
Definition UUID.h:7
Definition CustomBiomeSourceConfig.h:14
Definition Alias.h:14