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