LeviLamina
Loading...
Searching...
No Matches
BiomeSurfaceMaterialData.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<4, 4, uint> mTopBlock;
19 ::ll::TypedStorage<4, 4, uint> mMidBlock;
20 ::ll::TypedStorage<4, 4, uint> mSeaFloorBlock;
21 ::ll::TypedStorage<4, 4, uint> mFoundationBlock;
22 ::ll::TypedStorage<4, 4, uint> mSeaBlock;
23 ::ll::TypedStorage<4, 4, int> mSeaFloorDepth;
24 // NOLINTEND
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI bool operator==(::BiomeSurfaceMaterialData const&) const;
30
31 MCAPI void write(::BinaryStream& stream) const;
32 // NOLINTEND
33
34public:
35 // static functions
36 // NOLINTBEGIN
37 MCAPI static ::Bedrock::Result<::BiomeSurfaceMaterialData> read(::ReadOnlyBinaryStream& stream);
38 // NOLINTEND
39};
Definition BinaryStream.h:11
Definition ReadOnlyBinaryStream.h:8
Definition BiomeSurfaceMaterialData.h:14