LeviLamina
Loading...
Searching...
No Matches
BrewingStandContainerManagerModel.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;
14class ItemStack;
15class Player;
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 0
38 virtual ~BrewingStandContainerManagerModel() /*override*/ = default;
39
40 // vIndex: 7
41 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
42
43 // vIndex: 8
44 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
45
46 // vIndex: 9
47 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
48
49 // vIndex: 10
50 virtual void setData(int id, int value) /*override*/;
51
52 // vIndex: 19
53 virtual bool isValid(float pickRange) /*override*/;
54
55 // vIndex: 13
56 virtual void broadcastChanges() /*override*/;
57
58 // vIndex: 20
59 virtual ::ContainerScreenContext _postInit() /*override*/;
60 // NOLINTEND
61
62public:
63 // member functions
64 // NOLINTBEGIN
65 MCAPI BrewingStandContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
66
67 MCAPI ::BrewingStandBlockActor* _getBrewingStandEntity();
68 // NOLINTEND
69
70public:
71 // constructor thunks
72 // NOLINTBEGIN
73 MCAPI void* $ctor(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
74 // NOLINTEND
75
76public:
77 // destructor thunk
78 // NOLINTBEGIN
79
80 // NOLINTEND
81
82public:
83 // virtual function thunks
84 // NOLINTBEGIN
85 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
86
87 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
88
89 MCAPI ::ItemStack const& $getSlot(int slot) const;
90
91 MCAPI void $setData(int id, int value);
92
93 MCAPI bool $isValid(float pickRange);
94
95 MCAPI void $broadcastChanges();
96
97 MCAPI ::ContainerScreenContext $_postInit();
98 // NOLINTEND
99
100public:
101 // vftables
102 // NOLINTBEGIN
103 MCAPI static void** $vftable();
104 // NOLINTEND
105};
Definition BlockPos.h:18
Definition BrewingStandBlockActor.h:22
Definition BrewingStandContainerManagerModel.h:18
Definition ContainerManagerModel.h:23
Definition ContainerScreenContext.h:11
Definition ItemStack.h:25
Definition Player.h:119
Definition Alias.h:14