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
19 ::ll::TypedStorage<4, 4, int> mCurrentIndex;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~TradeContainerManagerModel() /*override*/ = default;
26
27 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
28
29 virtual void setSlot(int slot, ::ItemStack const& item, bool) /*override*/;
30
31 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
32
33 virtual bool isValid(float pickRange) /*override*/;
34
35 virtual void broadcastChanges() /*override*/;
36
37 virtual ::ContainerScreenContext _postInit() /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCFOLD ::Actor* getEntity() const;
44
45 MCAPI_C void recipeChanged();
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
52
53 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool);
54
55 MCAPI ::ItemStack const& $getSlot(int slot) const;
56
57 MCAPI bool $isValid(float pickRange);
58
59 MCFOLD void $broadcastChanges();
60
61 MCAPI ::ContainerScreenContext $_postInit();
62
63
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCAPI static void** $vftable();
70 // NOLINTEND
71};
Definition Actor.h:105
Definition ContainerScreenContext.h:17
static MCAPI void ** $vftable()
Definition ItemStack.h:26
Definition LevelContainerManagerModel.h:18
Definition TradeContainerManagerModel.h:15