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