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