LeviLamina
Loading...
Searching...
No Matches
CrafterContainerManagerModel.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/LevelContainerManagerModel.h"
8#include "mc/world/item/ItemInstance.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockPos;
14class ItemStack;
15class Player;
16// clang-format on
17
18class CrafterContainerManagerModel : public ::LevelContainerManagerModel {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 128, ::ItemInstance> mLastCachedResultItem;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 CrafterContainerManagerModel();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~CrafterContainerManagerModel() /*override*/ = default;
33
34 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
35
36 virtual ::ContainerScreenContext _postInit() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI CrafterContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
55
56 MCAPI ::ContainerScreenContext $_postInit();
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCAPI static void** $vftable();
65 // NOLINTEND
66};
Definition BlockPos.h:19
Definition ContainerScreenContext.h:17
static MCAPI void ** $vftable()
Definition ItemStack.h:26
Definition LevelContainerManagerModel.h:18
Definition Player.h:125