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/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
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 // vIndex: 2
29 virtual ::std::string getName() const /*override*/;
30
31 // vIndex: 1
32 virtual ::MinecraftPacketIds getId() const /*override*/;
33
34 // vIndex: 4
35 virtual void write(::BinaryStream& stream) const /*override*/;
36
37 // vIndex: 8
38 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
39
40 // vIndex: 0
41 virtual ~ClientCacheMissResponsePacket() /*override*/;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor();
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCAPI void $dtor();
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65 MCAPI ::std::string $getName() const;
66
67 MCAPI ::MinecraftPacketIds $getId() const;
68
69 MCAPI void $write(::BinaryStream& stream) const;
70
71 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCAPI static void** $vftable();
78 // NOLINTEND
79};
Definition BinaryStream.h:10
Definition ClientCacheMissResponsePacket.h:17
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8