LeviLamina
Loading...
Searching...
No Matches
BiomeDefinitionData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/BiomeIdType.h"
7#include "mc/platform/Result.h"
8#include "mc/world/level/biome/serialization/BiomeDefinitionChunkGenData.h"
9#include "mc/world/level/biome/serialization/BiomeTagsData.h"
10
11// auto generated forward declare list
12// clang-format off
13class BinaryStream;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<2, 2, ::BiomeIdType> mId;
22 ::ll::TypedStorage<4, 4, float> mTemperature;
23 ::ll::TypedStorage<4, 4, float> mDownfall;
24 ::ll::TypedStorage<4, 4, float> mFoliageSnow;
25 ::ll::TypedStorage<4, 4, float> mDepth;
26 ::ll::TypedStorage<4, 4, float> mScale;
27 ::ll::TypedStorage<4, 4, int> mMapWaterColorARGB;
28 ::ll::TypedStorage<1, 1, bool> mRain;
29 ::ll::TypedStorage<8, 32, ::std::optional<::BiomeTagsData>> mTags;
30 ::ll::TypedStorage<8, 504, ::std::optional<::BiomeDefinitionChunkGenData>> mChunkGenData;
31 // NOLINTEND
32
33public:
34 // prevent constructor by default
38
39public:
40 // member functions
41 // NOLINTBEGIN
43
44 MCAPI void write(::BinaryStream& stream) const;
45
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCAPI static ::Bedrock::Result<::BiomeDefinitionData> read(::ReadOnlyBinaryStream& stream);
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(::BiomeDefinitionData&&);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCAPI void $dtor();
65 // NOLINTEND
66};
Definition BinaryStream.h:10
Definition ReadOnlyBinaryStream.h:8
Definition BiomeDefinitionData.h:17