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