LeviLamina
Loading...
Searching...
No Matches
LevelContainerManagerModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/containers/managers/models/ContainerManagerModel.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockActor;
11class Container;
13class ItemStack;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~LevelContainerManagerModel() /*override*/;
36
37 // vIndex: 7
38 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
39
40 // vIndex: 8
41 virtual void setSlot(int slot, ::ItemStack const& item, bool) /*override*/;
42
43 // vIndex: 9
44 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
45
46 // vIndex: 10
47 virtual void setData(int id, int value) /*override*/;
48
49 // vIndex: 13
50 virtual void broadcastChanges() /*override*/;
51
52 // vIndex: 19
53 virtual bool isValid(float pickRange) /*override*/;
54
55 // vIndex: 20
56 virtual ::ContainerScreenContext _postInit() /*override*/;
57 // NOLINTEND
58
59public:
60 // member functions
61 // NOLINTBEGIN
62 MCAPI ::BlockActor* _getBlockEntity();
63
64 MCAPI ::Container* _getRawContainer();
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
77
78 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool);
79
80 MCAPI ::ItemStack const& $getSlot(int slot) const;
81
82 MCFOLD void $setData(int id, int value);
83
84 MCAPI void $broadcastChanges();
85
86 MCAPI bool $isValid(float pickRange);
87
88 MCAPI ::ContainerScreenContext $_postInit();
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCAPI static void** $vftable();
95 // NOLINTEND
96};
Definition BlockActor.h:32
Definition ContainerManagerModel.h:23
Definition ContainerScreenContext.h:11
Definition Container.h:30
Definition ItemStack.h:25
Definition LevelContainerManagerModel.h:16
Definition Alias.h:14