LeviLamina
Loading...
Searching...
No Matches
ClientCacheBlobStatusPacket.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
10// auto generated forward declare list
11// clang-format off
12class BinaryStream;
14// clang-format on
15
16class ClientCacheBlobStatusPacket : public ::Packet {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::std::vector<uint64>> mMissingIds;
21 ::ll::TypedStorage<8, 24, ::std::vector<uint64>> mFoundIds;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::std::string getName() const /*override*/;
28
29 virtual ::MinecraftPacketIds getId() const /*override*/;
30
31 virtual void write(::BinaryStream& stream) const /*override*/;
32
33 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
34
35#ifdef LL_PLAT_S
36 virtual ~ClientCacheBlobStatusPacket() /*override*/ = default;
37#else // LL_PLAT_C
38 virtual ~ClientCacheBlobStatusPacket() /*override*/;
39#endif
40
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI ::std::string $getName() const;
53
54 MCAPI ::MinecraftPacketIds $getId() const;
55
56 MCAPI void $write(::BinaryStream& stream) const;
57
58 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
59
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition BinaryStream.h:11
Definition ClientCacheBlobStatusPacket.h:16
static MCAPI void ** $vftable()
Definition ReadOnlyBinaryStream.h:8