LeviLamina
Loading...
Searching...
No Matches
BiomeWeightedData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7
8// auto generated forward declare list
9// clang-format off
10class BinaryStream;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<2, 2, ushort> mBiomeIdentifier;
19 ::ll::TypedStorage<4, 4, uint> mWeight;
20 // NOLINTEND
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI void write(::BinaryStream& stream) const;
26 // NOLINTEND
27
28public:
29 // static functions
30 // NOLINTBEGIN
31 MCAPI static ::Bedrock::Result<::BiomeWeightedData> read(::ReadOnlyBinaryStream& stream);
32 // NOLINTEND
33};
Definition BinaryStream.h:11
Definition ReadOnlyBinaryStream.h:8
Definition BiomeWeightedData.h:14