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
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
32 MCAPI SpawnSettings(::SpawnSettings const&);
33
34 MCAPI ::SpawnSettings& operator=(::SpawnSettings const&);
35
36 MCAPI ~SpawnSettings();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(::SpawnSettings&&);
43
44 MCAPI void* $ctor(::SpawnSettings const&);
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCFOLD void $dtor();
51 // NOLINTEND
52};
Definition Dimension.h:83
Definition SpawnSettings.h:14