LeviLamina
Loading...
Searching...
No Matches
EnchantingInputContainerValidation.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: 2
19 virtual bool isItemAllowedInSlot(
20 ::ContainerScreenContext const& screenContext,
21 int const slot,
22 ::ItemStackBase const& item,
23 int const amount,
24 bool
25 ) const /*override*/;
26
27 // vIndex: 3
28 virtual int getAvailableSetCount(int slot, ::ItemStackBase const& item) const /*override*/;
29
30 // vIndex: 4
31 virtual int getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const /*override*/;
32
33 // vIndex: 8
34 virtual int getContainerOffset(::ContainerScreenContext const& screenContext) const /*override*/;
35
36 // vIndex: 0
37 virtual ~EnchantingInputContainerValidation() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $isItemAllowedInSlot(
50 ::ContainerScreenContext const& screenContext,
51 int const slot,
52 ::ItemStackBase const& item,
53 int const amount,
54 bool
55 ) const;
56
57 MCFOLD int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const;
58
59 MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const;
60
61 MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const;
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition ContainerScreenContext.h:11
Definition ContainerValidationBase.h:12
Definition EnchantingInputContainerValidation.h:14
Definition ItemStackBase.h:35