LeviLamina
Loading...
Searching...
No Matches
CartographyContainerManagerModel.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 ~CartographyContainerManagerModel() /*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: 13
49 virtual void broadcastChanges() /*override*/;
50
51 // vIndex: 19
52 virtual bool isValid(float pickRange) /*override*/;
53
54 // vIndex: 20
55 virtual ::ContainerScreenContext _postInit() /*override*/;
56 // NOLINTEND
57
58public:
59 // member functions
60 // NOLINTBEGIN
61 MCAPI CartographyContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
67 MCAPI void* $ctor(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
68 // NOLINTEND
69
70public:
71 // destructor thunk
72 // NOLINTBEGIN
73
74 // NOLINTEND
75
76public:
77 // virtual function thunks
78 // NOLINTBEGIN
79 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
80
81 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
82
83 MCAPI ::ItemStack const& $getSlot(int slot) const;
84
85 MCFOLD void $setData(int id, int value);
86
87 MCFOLD void $broadcastChanges();
88
89 MCAPI bool $isValid(float pickRange);
90
91 MCAPI ::ContainerScreenContext $_postInit();
92 // NOLINTEND
93
94public:
95 // vftables
96 // NOLINTBEGIN
97 MCAPI static void** $vftable();
98 // NOLINTEND
99};
Definition BlockPos.h:18
Definition CartographyContainerManagerModel.h:17
Definition ContainerManagerModel.h:23
Definition ContainerScreenContext.h:11
Definition ItemStack.h:25
Definition Player.h:119
Definition Alias.h:14