LeviLamina
Loading...
Searching...
No Matches
ColorInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace mce { class Color; }
8// clang-format on
9
10namespace persona::color {
11
12class ColorInfo {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ColorInfo& operator=(ColorInfo const&);
23 ColorInfo(ColorInfo const&);
24 ColorInfo();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29#ifdef LL_PLAT_C
30 MCNAPI ColorInfo(::mce::Color color, uint64 colorChannel);
31
32 MCNAPI ::mce::Color getColor() const;
33
34 MCNAPI uint64 getColorChannel() const;
35#endif
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI void* $ctor(::mce::Color color, uint64 colorChannel);
43#endif
44 // NOLINTEND
45};
46
47} // namespace persona::color
Definition Color.h:13
Definition Alias.h:14