LeviLamina
Loading...
Searching...
No Matches
EnchantingMaterialContainerValidation.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 getContainerOffset(::ContainerScreenContext const& screenContext) const /*override*/;
27 // NOLINTEND
28
29public:
30 // virtual function thunks
31 // NOLINTBEGIN
32 MCAPI bool $isItemAllowedInSlot(
33 ::ContainerScreenContext const& screenContext,
34 int const slot,
35 ::ItemStackBase const& item,
36 int const amount,
37 bool
38 ) const;
39
40 MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const;
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
Definition ContainerScreenContext.h:19
Definition ContainerValidationBase.h:12
Definition EnchantingMaterialContainerValidation.h:14
Definition ItemStackBase.h:52