LeviLamina
Loading...
Searching...
No Matches
BiomeDefinitionListPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/MinecraftPacketIds.h"
7#include "mc/network/Packet.h"
8#include "mc/platform/Result.h"
9#include "mc/world/level/biome/serialization/BiomeStringList.h"
10
11// auto generated forward declare list
12// clang-format off
13class BinaryStream;
16// clang-format on
17
18class BiomeDefinitionListPacket : public ::Packet {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 64, ::std::unordered_map<ushort, ::BiomeDefinitionData>> mBiomeData;
23 ::ll::TypedStorage<8, 88, ::BiomeStringList> mStringList;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ::MinecraftPacketIds getId() const /*override*/;
30
31 virtual ::std::string getName() const /*override*/;
32
33 virtual void write(::BinaryStream& stream) const /*override*/;
34
35 virtual ::Bedrock::Result<void> read(::ReadOnlyBinaryStream& stream) /*override*/;
36
37 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
38
39 virtual ~BiomeDefinitionListPacket() /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI BiomeDefinitionListPacket();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor();
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCAPI void $dtor();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI ::MinecraftPacketIds $getId() const;
64
65 MCAPI ::std::string $getName() const;
66
67 MCAPI void $write(::BinaryStream& stream) const;
68
69 MCAPI ::Bedrock::Result<void> $read(::ReadOnlyBinaryStream& stream);
70
71 MCFOLD ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
72
73
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCNAPI static void** $vftable();
80 // NOLINTEND
81};
Definition BinaryStream.h:11
static MCAPI void ** $vftable()
Definition ReadOnlyBinaryStream.h:8
Definition BiomeDefinitionData.h:17