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
11class ItemStack;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 0
36 virtual ~BeaconContainerManagerModel() /*override*/ = default;
37
38 // vIndex: 8
39 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
40
41 // vIndex: 9
42 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
43
44 // vIndex: 7
45 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
46
47 // vIndex: 20
48 virtual ::ContainerScreenContext _postInit() /*override*/;
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
61
62 MCAPI ::ItemStack const& $getSlot(int slot) const;
63
64 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
65
66 MCAPI ::ContainerScreenContext $_postInit();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition BeaconContainerManagerModel.h:14
Definition ContainerScreenContext.h:11
Definition ItemStack.h:25
Definition LevelContainerManagerModel.h:16
Definition Alias.h:14