LeviLamina
Loading...
Searching...
No Matches
AnvilContainerManagerModel.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 ~AnvilContainerManagerModel() /*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 id, int value) /*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 AnvilContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
62 // NOLINTEND
63
64public:
65 // static variables
66 // NOLINTBEGIN
67 MCAPI static int const& RESULT_SLOT();
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 MCFOLD void $setData(int id, int value);
92
93 MCAPI bool $isValid(float pickRange);
94
95 MCFOLD void $broadcastChanges();
96
97 MCAPI ::ContainerScreenContext $_postInit();
98 // NOLINTEND
99
100public:
101 // vftables
102 // NOLINTBEGIN
103 MCAPI static void** $vftable();
104 // NOLINTEND
105};
Definition AnvilContainerManagerModel.h:17
Definition BlockPos.h:18
Definition ContainerManagerModel.h:23
Definition ContainerScreenContext.h:11
Definition ItemStack.h:25
Definition Player.h:119
Definition Alias.h:14