LeviLamina
Loading...
Searching...
No Matches
VariationMap.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/json/Value.h"
7
8namespace cg {
9
10struct VariationMap {
11public:
12 // VariationMap inner types define
13 using MaterialJsonVariationMap = ::std::map<::std::string, ::cg::VariationMap>;
14
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 16, ::std::map<::std::string, ::cg::VariationMap>> mMaterialJsonVariationMap;
19 ::ll::TypedStorage<8, 16, ::Json::Value> mVariantJson;
20 // NOLINTEND
21
22#ifdef LL_PLAT_S
23#else // LL_PLAT_C
24public:
25 // prevent constructor by default
26 VariationMap& operator=(VariationMap const&);
27 VariationMap();
28
29#endif
30public:
31 // member functions
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCAPI VariationMap(::cg::VariationMap const&);
35
36 MCAPI ~VariationMap();
37#endif
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43#ifdef LL_PLAT_C
44 MCAPI void* $ctor(::cg::VariationMap const&);
45#endif
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51#ifdef LL_PLAT_C
52 MCAPI void $dtor();
53#endif
54 // NOLINTEND
55};
56
57} // namespace cg
Definition VariationMap.h:10