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;
11class ContainerModel;
13class ItemStack;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::ContainerModel>> mEquipContainerModel;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~HorseContainerManagerModel() /*override*/ = default;
27
28 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
29
30 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
31
32 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
33
34 virtual ::ContainerScreenContext _postInit() /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI void _onEquipSlotChanged(int slot, ::ItemStack const& oldItem, ::ItemStack const& newItem);
41
42 MCFOLD ::Actor* getEntity() const;
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
49
50 MCAPI ::ItemStack const& $getSlot(int slot) const;
51
52 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
53
54 MCAPI ::ContainerScreenContext $_postInit();
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition Actor.h:106
Definition ContainerModel.h:27
Definition ContainerScreenContext.h:17
Definition HorseContainerManagerModel.h:16
static MCAPI void ** $vftable()
Definition ItemStack.h:26
Definition LevelContainerManagerModel.h:18