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