LeviLamina
Loading...
Searching...
No Matches
BiomeCappedSurfaceData.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
14struct BiomeCappedSurfaceData {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 24, ::std::vector<uint>> mFloorBlocks;
19 ::ll::TypedStorage<8, 24, ::std::vector<uint>> mCeilingBlocks;
20 ::ll::TypedStorage<4, 8, ::std::optional<uint>> mSeaBlock;
21 ::ll::TypedStorage<4, 8, ::std::optional<uint>> mFoundationBlock;
22 ::ll::TypedStorage<4, 8, ::std::optional<uint>> mBeachBlock;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 BiomeCappedSurfaceData& operator=(BiomeCappedSurfaceData const&);
28 BiomeCappedSurfaceData();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI BiomeCappedSurfaceData(::BiomeCappedSurfaceData const&);
34
35 MCAPI ::BiomeCappedSurfaceData& operator=(::BiomeCappedSurfaceData&&);
36
37 MCAPI bool operator==(::BiomeCappedSurfaceData const& other) const;
38
39 MCAPI void write(::BinaryStream& stream) const;
40
41 MCAPI ~BiomeCappedSurfaceData();
42 // NOLINTEND
43
44public:
45 // static functions
46 // NOLINTBEGIN
47 MCAPI static ::Bedrock::Result<::BiomeCappedSurfaceData> read(::ReadOnlyBinaryStream& stream);
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor(::BiomeCappedSurfaceData const&);
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCFOLD void $dtor();
60 // NOLINTEND
61};
Definition BinaryStream.h:11
Definition ReadOnlyBinaryStream.h:8