LeviLamina
Loading...
Searching...
No Matches
BeaconContainerManagerModel.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 ContainerModel;
12class ItemStack;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::ContainerModel>> mPaymentContainerModel;
20 ::ll::TypedStorage<4, 4, int> mPrimaryEffectPreviousId;
21 ::ll::TypedStorage<4, 4, int> mSecondaryEffectPreviousId;
22 ::ll::TypedStorage<4, 4, int> mSelectedPrimaryEffectId;
23 ::ll::TypedStorage<4, 4, int> mSelectedSecondaryEffectId;
24 ::ll::TypedStorage<1, 1, bool> mEffectSelectionsChanged;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~BeaconContainerManagerModel() /*override*/ = default;
32
33 // vIndex: 8
34 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
35
36 // vIndex: 9
37 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
38
39 // vIndex: 7
40 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
41
42 // vIndex: 20
43 virtual ::ContainerScreenContext _postInit() /*override*/;
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCNAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
50
51 MCNAPI ::ItemStack const& $getSlot(int slot) const;
52
53 MCNAPI ::std::vector<::ItemStack> $getItemCopies() const;
54
55 MCNAPI ::ContainerScreenContext $_postInit();
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BeaconContainerManagerModel.h:15
MCAPI::ContainerScreenContext $_postInit()
MCAPI ::std::vector<::ItemStack > $getItemCopies() const
static MCAPI void ** $vftable()
MCAPI void $setSlot(int slot, ::ItemStack const &item, bool fromNetwork)
MCAPI::ItemStack const & $getSlot(int slot) const
Definition ContainerModel.h:25
Definition ContainerScreenContext.h:17
Definition ItemStack.h:25
Definition LevelContainerManagerModel.h:19