LeviLamina
Loading...
Searching...
No Matches
TradeIngredientContainerController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/containers/controllers/ContainerController.h"
7#include "mc/world/item/ItemStack.h"
8
9// auto generated forward declare list
10// clang-format off
11class ItemStackBase;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 152, ::ItemStack> mItem;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 3
25 virtual bool isItemAllowed(::ItemStackBase const&) const /*override*/;
26
27 // vIndex: 0
28 virtual ~TradeIngredientContainerController() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34
35 // NOLINTEND
36};
Definition ContainerController.h:18
Definition ItemStackBase.h:35
Definition TradeIngredientContainerController.h:14