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
22public:
23 // prevent constructor by default
24 VariationMap& operator=(VariationMap const&);
25 VariationMap();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI_C VariationMap(::cg::VariationMap const&);
31
32 MCAPI_C ~VariationMap();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI_C void* $ctor(::cg::VariationMap const&);
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCAPI_C void $dtor();
45 // NOLINTEND
46};
47
48} // namespace cg
Definition VariationMap.h:10