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
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
13class ItemStack;
14class Player;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~CrafterContainerManagerModel() /*override*/ = default;
35
36 // vIndex: 8
37 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
38
39 // vIndex: 20
40 virtual ::ContainerScreenContext _postInit() /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI CrafterContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
65
66 MCAPI ::ContainerScreenContext $_postInit();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition BlockPos.h:18
Definition ContainerScreenContext.h:11
Definition CrafterContainerManagerModel.h:17
Definition ItemStack.h:25
Definition LevelContainerManagerModel.h:16
Definition Player.h:119
Definition Alias.h:14