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_view 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 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39#ifdef LL_PLAT_C
40 MCAPI bool isEmpty() const;
41
42 MCAPI bool isFull() const;
43#endif
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI ::std::string_view $getName() const;
50
51 MCAPI ::MinecraftPacketIds $getId() const;
52
53 MCAPI void $write(::BinaryStream& stream) const;
54
55 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition BinaryStream.h:11
Definition ClientCacheBlobStatusPacket.h:16
static MCAPI void ** $vftable()
Definition ReadOnlyBinaryStream.h:8