LeviLamina
Loading...
Searching...
No Matches
RecipeIngredientSet.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemStack;
8class ItemStackBase;
9// clang-format on
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 64, ::std::unordered_map<int, int>> mSet;
16 // NOLINTEND
17
18public:
19 // member functions
20 // NOLINTBEGIN
21#ifdef LL_PLAT_C
22 MCAPI void add(::ItemStackBase const& item);
23
24 MCAPI void add(::std::vector<::ItemStack> const& list);
25
27#endif
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCFOLD void $dtor();
35#endif
36 // NOLINTEND
37};
Definition ItemStackBase.h:44
Definition ItemStack.h:26
Definition RecipeIngredientSet.h:11