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