LeviLamina
Loading...
Searching...
No Matches
PreviewContainerValidation.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 ~PreviewContainerValidation() /*override*/ = default;
20
21 virtual bool isItemAllowedInSlot(
22 ::ContainerScreenContext const& screenContext,
23 int const slot,
24 ::ItemStackBase const& item,
25 int const amount,
26 bool
27 ) const /*override*/;
28
29 virtual int getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const /*override*/;
30
31 virtual bool isValidSlotForContainer(
32 ::ContainerScreenContext const& screenContext,
33 ::Container const& container,
34 int const slot
35 ) const /*override*/;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCFOLD bool $isItemAllowedInSlot(
42 ::ContainerScreenContext const& screenContext,
43 int const slot,
44 ::ItemStackBase const& item,
45 int const amount,
46 bool
47 ) const;
48
49 MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const;
50
51 MCFOLD bool $isValidSlotForContainer(
52 ::ContainerScreenContext const& screenContext,
53 ::Container const& container,
54 int const slot
55 ) const;
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition ContainerScreenContext.h:17
Definition ContainerValidationBase.h:12
Definition Container.h:33
Definition ItemStackBase.h:44
Definition PreviewContainerValidation.h:15
static MCAPI void ** $vftable()