LeviLamina
Loading...
Searching...
No Matches
ClientCacheMissResponsePacket.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;
14namespace ClientBlobCache::Server { class Blob; }
15// clang-format on
16
17class ClientCacheMissResponsePacket : public ::Packet {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::std::vector<::std::shared_ptr<::ClientBlobCache::Server::Blob>>> mWriteMissingContent;
22 ::ll::TypedStorage<8, 64, ::std::unordered_map<uint64, ::std::string>> mReceivedMissingContent;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ::std::string getName() const /*override*/;
29
30 virtual ::MinecraftPacketIds getId() const /*override*/;
31
32 virtual void write(::BinaryStream& stream) const /*override*/;
33
34 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
35
36 virtual ~ClientCacheMissResponsePacket() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI ClientCacheMissResponsePacket();
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor();
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI ::std::string $getName() const;
61
62 MCAPI ::MinecraftPacketIds $getId() const;
63
64 MCAPI void $write(::BinaryStream& stream) const;
65
66 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition BinaryStream.h:11
static MCAPI void ** $vftable()
Definition ReadOnlyBinaryStream.h:8