LeviLamina
Loading...
Searching...
No Matches
BrewingStandContainerManagerModel.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/ContainerManagerModel.h"
8#include "mc/world/level/BlockPos.h"
9
10// auto generated forward declare list
11// clang-format off
14class ItemStack;
15class Player;
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 12, ::BlockPos> mBlockPos;
23 ::ll::TypedStorage<4, 4, int> mLastTickCount;
24 ::ll::TypedStorage<4, 4, int> mLastFuelAmount;
25 ::ll::TypedStorage<4, 4, int> mLastFuelTotal;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 0
36 virtual ~BrewingStandContainerManagerModel() /*override*/ = default;
37
38 // vIndex: 7
39 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
40
41 // vIndex: 8
42 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
43
44 // vIndex: 9
45 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
46
47 // vIndex: 10
48 virtual void setData(int id, int value) /*override*/;
49
50 // vIndex: 19
51 virtual bool isValid(float pickRange) /*override*/;
52
53 // vIndex: 13
54 virtual void broadcastChanges() /*override*/;
55
56 // vIndex: 20
57 virtual ::ContainerScreenContext _postInit() /*override*/;
58 // NOLINTEND
59
60public:
61 // member functions
62 // NOLINTBEGIN
63 MCNAPI BrewingStandContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
64
65 MCNAPI ::BrewingStandBlockActor* _getBrewingStandEntity();
66 // NOLINTEND
67
68public:
69 // constructor thunks
70 // NOLINTBEGIN
71 MCNAPI void* $ctor(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
72 // NOLINTEND
73
74public:
75 // virtual function thunks
76 // NOLINTBEGIN
77 MCNAPI ::std::vector<::ItemStack> $getItemCopies() const;
78
79 MCNAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
80
81 MCNAPI ::ItemStack const& $getSlot(int slot) const;
82
83 MCNAPI void $setData(int id, int value);
84
85 MCNAPI bool $isValid(float pickRange);
86
87 MCNAPI void $broadcastChanges();
88
89 MCNAPI ::ContainerScreenContext $_postInit();
90 // NOLINTEND
91
92public:
93 // vftables
94 // NOLINTBEGIN
95 MCNAPI static void** $vftable();
96 // NOLINTEND
97};
Definition BlockPos.h:18
Definition BrewingStandBlockActor.h:22
Definition BrewingStandContainerManagerModel.h:18
MCAPI::ContainerScreenContext $_postInit()
MCAPI BrewingStandContainerManagerModel(::ContainerID containerId, ::Player &player, ::BlockPos const &blockPos)
MCAPI::ItemStack const & $getSlot(int slot) const
static MCAPI void ** $vftable()
MCAPI::BrewingStandBlockActor * _getBrewingStandEntity()
MCAPI ::std::vector<::ItemStack > $getItemCopies() const
MCAPI void $setSlot(int slot, ::ItemStack const &item, bool fromNetwork)
MCAPI void $setData(int id, int value)
MCAPI bool $isValid(float pickRange)
MCAPI void * $ctor(::ContainerID containerId, ::Player &player, ::BlockPos const &blockPos)
Definition ContainerManagerModel.h:29
Definition ContainerScreenContext.h:17
Definition ItemStack.h:25
Definition Player.h:119