LeviLamina
Loading...
Searching...
No Matches
BiomeReplacement.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Biome;
8// clang-format on
9
10struct BiomeReplacement {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 8, ::gsl::not_null<::Biome const*>> mReplacementBiome;
15 ::ll::TypedStorage<8, 32, ::std::string> mDimension;
16 ::ll::TypedStorage<8, 24, ::std::vector<::gsl::not_null<::Biome const*>>> mTargetBiomes;
17 ::ll::TypedStorage<4, 4, float> mAmount;
18 ::ll::TypedStorage<4, 4, float> mNoiseFrequencyScale;
19 ::ll::TypedStorage<4, 4, uint> mReplacementIndex;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 BiomeReplacement& operator=(BiomeReplacement const&);
25 BiomeReplacement();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI BiomeReplacement(::BiomeReplacement const&);
31
32 MCAPI ~BiomeReplacement();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor(::BiomeReplacement const&);
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCFOLD void $dtor();
45 // NOLINTEND
46};
Definition Biome.h:24