LeviLamina
Loading...
Searching...
No Matches
SpawnSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/AutomaticID.h"
7#include "mc/world/level/SpawnBiomeType.h"
8
9// auto generated forward declare list
10// clang-format off
11class Dimension;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<2, 2, ::SpawnBiomeType> type;
19 ::ll::TypedStorage<8, 32, ::std::string> userDefinedBiomeName;
20 ::ll::TypedStorage<4, 4, ::DimensionType> dimension;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 SpawnSettings& operator=(SpawnSettings const&);
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
32 MCAPI SpawnSettings(::SpawnSettings const&);
33
34 MCAPI ~SpawnSettings();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(::SpawnSettings&&);
41
42 MCAPI void* $ctor(::SpawnSettings const&);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCFOLD void $dtor();
49 // NOLINTEND
50};
Definition Dimension.h:83
Definition SpawnSettings.h:14