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