LeviLamina
Loading...
Searching...
No Matches
InventoryContainerValidation.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: 5
20 virtual bool isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const
21 /*override*/;
22
23 // vIndex: 8
24 virtual int getContainerOffset(::ContainerScreenContext const& screenContext) const /*override*/;
25
26 // vIndex: 9
27 virtual int getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const
28 /*override*/;
29
30 // vIndex: 6
31 virtual bool canItemMoveToContainer(::ItemStackBase const& item) const /*override*/;
32
33 // vIndex: 0
34 virtual ~InventoryContainerValidation() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCFOLD bool
47 $isItemAllowedToRemove(::ContainerScreenContext const& screenContext, ::ItemStackBase const& item) const;
48
49 MCFOLD int $getContainerOffset(::ContainerScreenContext const& screenContext) const;
50
51 MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const;
52
53 MCFOLD bool $canItemMoveToContainer(::ItemStackBase const& item) 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 InventoryContainerValidation.h:15
Definition ItemStackBase.h:35