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 RecipeIngredientSet();
23
24 MCAPI void add(::ItemStackBase const& item);
25
26 MCAPI void add(::std::vector<::ItemStack> const& list);
27
28 MCFOLD bool empty() const;
29
30 MCAPI bool operator!=(::RecipeIngredientSet const& lhs) const;
31
33#endif
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39#ifdef LL_PLAT_C
40 MCFOLD void* $ctor();
41#endif
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47#ifdef LL_PLAT_C
48 MCFOLD void $dtor();
49#endif
50 // NOLINTEND
51};
Definition ItemStackBase.h:52
Definition ItemStack.h:35
Definition RecipeIngredientSet.h:11