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 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::MinecraftPacketIds $getId() const;
52
53 MCAPI ::std::string $getName() const;
54
55 MCAPI void $write(::BinaryStream& stream) const;
56
57 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCAPI static void** $vftable();
64 // NOLINTEND
65};
Definition BinaryStream.h:10
Definition Packet.h:26
Definition PurchaseReceiptPacket.h:16
Definition ReadOnlyBinaryStream.h:8