LeviLamina
Loading...
Searching...
No Matches
RefreshEntitlementsPacket.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;
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 1
21 virtual ::MinecraftPacketIds getId() const /*override*/;
22
23 // vIndex: 2
24 virtual ::std::string getName() const /*override*/;
25
26 // vIndex: 4
27 virtual void write(::BinaryStream&) const /*override*/;
28
29 // vIndex: 8
30 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream&) /*override*/;
31
32 // vIndex: 0
33 virtual ~RefreshEntitlementsPacket() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::MinecraftPacketIds $getId() const;
46
47 MCAPI ::std::string $getName() const;
48
49 MCFOLD void $write(::BinaryStream&) const;
50
51 MCFOLD ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream&);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8
Definition RefreshEntitlementsPacket.h:16