LeviLamina
Loading...
Searching...
No Matches
GrindstoneAdditionalContainerValidation.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
19 isItemAllowedInSlot(::ContainerScreenContext const&, int const, ::ItemStackBase const& item, int const, bool) const
20 /*override*/;
21
22 virtual int getContainerOffset(::ContainerScreenContext const& screenContext) const /*override*/;
23
24 virtual ~GrindstoneAdditionalContainerValidation() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
32 int const,
33 ::ItemStackBase const& item,
34 int const,
35 bool
36 ) const;
37
38 MCNAPI int $getContainerOffset(::ContainerScreenContext const& screenContext) const;
39
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCNAPI static void** $vftable();
47 // NOLINTEND
48};
Definition ContainerScreenContext.h:17
Definition ContainerValidationBase.h:12
Definition GrindstoneAdditionalContainerValidation.h:14
MCAPI int $getContainerOffset(::ContainerScreenContext const &screenContext) const
MCAPI bool $isItemAllowedInSlot(::ContainerScreenContext const &, int const, ::ItemStackBase const &item, int const, bool) const
Definition ItemStackBase.h:44