LeviLamina
Loading...
Searching...
No Matches
IngredientSearchInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct SlotData;
8// clang-format on
9
10struct IngredientSearchInfo {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 24, ::std::vector<::SlotData>> mSlots;
15 ::ll::TypedStorage<4, 4, int> mCount;
16 // NOLINTEND
17
18#ifdef LL_PLAT_S
19#else // LL_PLAT_C
20public:
21 // prevent constructor by default
22 IngredientSearchInfo& operator=(IngredientSearchInfo const&);
23 IngredientSearchInfo();
24
25#endif
26public:
27 // member functions
28 // NOLINTBEGIN
29#ifdef LL_PLAT_C
30 MCAPI IngredientSearchInfo(::IngredientSearchInfo const&);
31#endif
32
33 MCAPI ~IngredientSearchInfo();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39#ifdef LL_PLAT_C
40 MCAPI void* $ctor(::IngredientSearchInfo const&);
41#endif
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49};
Definition SlotData.h:5