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