LeviLamina
Loading...
Searching...
No Matches
RecipeSearchResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct RecipeSearchResult {
6public:
7 // member variables
8 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 RecipeSearchResult& operator=(RecipeSearchResult const&);
19 RecipeSearchResult(RecipeSearchResult const&);
20 RecipeSearchResult();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25#ifdef LL_PLAT_C
26 MCNAPI ~RecipeSearchResult();
27#endif
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCNAPI void $dtor();
35#endif
36 // NOLINTEND
37};
Definition Alias.h:14