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