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 virtual bool isItemAllowedInSlot(
19 ::ContainerScreenContext const& screenContext,
20 int const slot,
21 ::ItemStackBase const& item,
22 int const amount,
23 bool
24 ) const /*override*/;
25
26 virtual int getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const& itemInSlot) const
27 /*override*/;
28
29 virtual int getAvailableSetCount(int slot, ::ItemStackBase const& item) const /*override*/;
30
31 virtual int getContainerOffset(::ContainerScreenContext const& screenContext) const /*override*/;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCAPI bool $isItemAllowedInSlot(
38 ::ContainerScreenContext const& screenContext,
39 int const slot,
40 ::ItemStackBase const& item,
41 int const amount,
42 bool
43 ) const;
44
45 MCAPI int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const& itemInSlot) const;
46
47 MCAPI int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const;
48
49 MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const;
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
Definition ContainerScreenContext.h:19
Definition ContainerValidationBase.h:12
Definition FurnaceFuelContainerValidation.h:14
static MCAPI void ** $vftable()
Definition ItemStackBase.h:52