LeviLamina
Loading...
Searching...
No Matches
BeaconPaymentContainerValidation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/inventory/simulation/validation/ContainerValidationBase.h"
7
8// auto generated forward declare list
9// clang-format off
11class ItemStackBase;
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~BeaconPaymentContainerValidation() /*override*/ = default;
20
21 // vIndex: 2
22 virtual bool isItemAllowedInSlot(
23 ::ContainerScreenContext const& screenContext,
24 int const slot,
25 ::ItemStackBase const& item,
26 int const amount,
27 bool
28 ) const /*override*/;
29
30 // vIndex: 3
31 virtual int getAvailableSetCount(int slot, ::ItemStackBase const& item) const /*override*/;
32
33 // vIndex: 4
34 virtual int getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const /*override*/;
35
36 // vIndex: 8
37 virtual int getContainerOffset(::ContainerScreenContext const& screenContext) const /*override*/;
38
39 // vIndex: 7
40 virtual bool canDestroy(::ContainerScreenContext const& screenContext) const /*override*/;
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI bool $isItemAllowedInSlot(
53 ::ContainerScreenContext const& screenContext,
54 int const slot,
55 ::ItemStackBase const& item,
56 int const amount,
57 bool
58 ) const;
59
60 MCFOLD int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const;
61
62 MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const;
63
64 MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const;
65
66 MCFOLD bool $canDestroy(::ContainerScreenContext const& screenContext) const;
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition BeaconPaymentContainerValidation.h:14
Definition ContainerScreenContext.h:11
Definition ContainerValidationBase.h:12
Definition ItemStackBase.h:35