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