LeviLamina
Loading...
Searching...
No Matches
TradeContainerManagerModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/containers/managers/models/LevelContainerManagerModel.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
12class ItemStack;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~TradeContainerManagerModel() /*override*/ = default;
33
34 // vIndex: 7
35 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
36
37 // vIndex: 8
38 virtual void setSlot(int slot, ::ItemStack const& item, bool) /*override*/;
39
40 // vIndex: 9
41 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
42
43 // vIndex: 19
44 virtual bool isValid(float pickRange) /*override*/;
45
46 // vIndex: 13
47 virtual void broadcastChanges() /*override*/;
48
49 // vIndex: 20
50 virtual ::ContainerScreenContext _postInit() /*override*/;
51 // NOLINTEND
52
53public:
54 // member functions
55 // NOLINTBEGIN
56 MCFOLD ::Actor* getEntity() const;
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
69
70 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool);
71
72 MCAPI ::ItemStack const& $getSlot(int slot) const;
73
74 MCAPI bool $isValid(float pickRange);
75
76 MCFOLD void $broadcastChanges();
77
78 MCAPI ::ContainerScreenContext $_postInit();
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCAPI static void** $vftable();
85 // NOLINTEND
86};
Definition Actor.h:104
Definition ContainerScreenContext.h:11
Definition ItemStack.h:25
Definition LevelContainerManagerModel.h:16
Definition TradeContainerManagerModel.h:15
Definition Alias.h:14