LeviLamina
Loading...
Searching...
No Matches
ItemGroup.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemInstance.h"
7
8class ItemGroup {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 128, ::ItemInstance> mItemTemplate;
13 ::ll::TypedStorage<4, 8, ::std::optional<int>> mStackSize;
14 // NOLINTEND
15
16#ifdef LL_PLAT_S
17#else // LL_PLAT_C
18public:
19 // prevent constructor by default
20 ItemGroup();
21
22#endif
23public:
24 // member functions
25 // NOLINTBEGIN
26#ifdef LL_PLAT_C
27 MCAPI ItemGroup(::ItemInstance const& itemInstance, int count);
28#endif
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34#ifdef LL_PLAT_C
35 MCAPI void* $ctor(::ItemInstance const& itemInstance, int count);
36#endif
37 // NOLINTEND
38};
Definition ItemInstance.h:15