LeviLamina
Loading...
Searching...
No Matches
HorseContainerManagerModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/containers/managers/models/LevelContainerManagerModel.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
12class ItemStack;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~HorseContainerManagerModel() /*override*/ = default;
33
34 // vIndex: 8
35 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
36
37 // vIndex: 9
38 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
39
40 // vIndex: 7
41 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
42
43 // vIndex: 20
44 virtual ::ContainerScreenContext _postInit() /*override*/;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI void _onEquipSlotChanged(int slot, ::ItemStack const& oldItem, ::ItemStack const& newItem);
51
52 MCFOLD ::Actor* getEntity() const;
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
65
66 MCAPI ::ItemStack const& $getSlot(int slot) const;
67
68 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
69
70 MCAPI ::ContainerScreenContext $_postInit();
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCAPI static void** $vftable();
77 // NOLINTEND
78};
Definition Actor.h:104
Definition ContainerScreenContext.h:11
Definition HorseContainerManagerModel.h:15
Definition ItemStack.h:25
Definition LevelContainerManagerModel.h:16
Definition Alias.h:14