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