LeviLamina
Loading...
Searching...
No Matches
HorseEquipContainerValidation.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 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 3
33 virtual int getAvailableSetCount(int slot, ::ItemStackBase const& item) const /*override*/;
34
35 // vIndex: 4
36 virtual int getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const /*override*/;
37
38 // vIndex: 2
39 virtual bool isItemAllowedInSlot(
41 int const slot,
42 ::ItemStackBase const& item,
43 int const amount,
44 bool
45 ) const /*override*/;
46
47 // vIndex: 9
48 virtual int getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const
49 /*override*/;
50
51 // vIndex: 0
52 virtual ~HorseEquipContainerValidation() /*override*/;
53 // NOLINTEND
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCAPI explicit HorseEquipContainerValidation(::ContainerScreenContext const& screenContext);
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::ContainerScreenContext const& screenContext);
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCFOLD int $getAvailableSetCount(int slot, ::ItemStackBase const& item) const;
77
78 MCFOLD int $getAllowedAddCount(::ContainerScreenContext const&, ::ItemStackBase const&) const;
79
80 MCAPI bool $isItemAllowedInSlot(
82 int const slot,
83 ::ItemStackBase const& item,
84 int const amount,
85 bool
86 ) const;
87
88 MCAPI int $getContainerSize(::ContainerScreenContext const& screenContext, ::Container const& container) const;
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCAPI static void** $vftable();
95 // NOLINTEND
96};
Definition ContainerScreenContext.h:11
Definition ContainerValidationBase.h:12
Definition Container.h:30
Definition HorseEquipContainerValidation.h:15
Definition ItemStackBase.h:35
Definition Alias.h:14