LeviLamina
Loading...
Searching...
No Matches
ItemStackRequestActionBeaconPayment.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7#include "mc/world/inventory/network/ItemStackRequestAction.h"
8
9// auto generated forward declare list
10// clang-format off
11class BinaryStream;
13// clang-format on
14
15class ItemStackRequestActionBeaconPayment : public ::ItemStackRequestAction {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, int> mPrimaryEffectId;
20 ::ll::TypedStorage<4, 4, int> mSecondaryEffectId;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual void _write(::BinaryStream& stream) const /*override*/;
27
28 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
35
36#ifdef LL_PLAT_C
37 MCNAPI ItemStackRequestActionBeaconPayment(int primaryEffectId, int secondaryEffectId);
38#endif
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor();
45
46#ifdef LL_PLAT_C
47 MCNAPI void* $ctor(int primaryEffectId, int secondaryEffectId);
48#endif
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCNAPI void $_write(::BinaryStream& stream) const;
55
56 MCNAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition BinaryStream.h:11
MCAPI ::Bedrock::Result< void > $_read(::ReadOnlyBinaryStream &stream)
static MCAPI void ** $vftable()
MCAPI void $_write(::BinaryStream &stream) const
Definition ReadOnlyBinaryStream.h:8