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 virtual ~CompoundCreatorInputValidation() /*override*/ = default;
20
21 virtual bool
22 isItemAllowedInSlot(::ContainerScreenContext const& item, int const, ::ItemStackBase const&, int const, bool) const
23 /*override*/;
24
25 virtual int getContainerOffset(::ContainerScreenContext const&) const /*override*/;
26
27 virtual int getContainerSize(::ContainerScreenContext const&, ::Container const&) const /*override*/;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33 MCAPI bool $isItemAllowedInSlot(
34 ::ContainerScreenContext const& item,
35 int const,
36 ::ItemStackBase const&,
37 int const,
38 bool
39 ) const;
40
41 MCFOLD int $getContainerOffset(::ContainerScreenContext const&) const;
42
43 MCFOLD int $getContainerSize(::ContainerScreenContext const&, ::Container const&) const;
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
Definition CompoundCreatorInputValidation.h:15
static MCAPI void ** $vftable()
Definition ContainerScreenContext.h:19
Definition ContainerValidationBase.h:12
Definition Container.h:34
Definition ItemStackBase.h:52