LeviLamina
Loading...
Searching...
No Matches
CustomBiomeSourceConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/LevelSeed64.h"
7
8// auto generated forward declare list
9// clang-format off
10class Dimension;
11struct CustomBiome;
12// clang-format on
13
14struct CustomBiomeSourceConfig {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::LevelSeed64> seed;
19 ::ll::TypedStorage<8, 8, ::Dimension const&> dimension;
20 ::ll::TypedStorage<8, 16, ::std::map<::std::string, ::CustomBiome>> newBiomeMap;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 CustomBiomeSourceConfig& operator=(CustomBiomeSourceConfig const&);
26 CustomBiomeSourceConfig(CustomBiomeSourceConfig const&);
27 CustomBiomeSourceConfig();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI ~CustomBiomeSourceConfig();
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCAPI void $dtor();
39 // NOLINTEND
40};
Definition Dimension.h:86
Definition CustomBiome.h:5