LeviLamina
Loading...
Searching...
No Matches
ColorChannel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class ColorChannel {
6public:
7 // member variables
8 // NOLINTBEGIN
10 // NOLINTEND
11
12#ifdef LL_PLAT_S
13public:
14 // prevent constructor by default
15 ColorChannel& operator=(ColorChannel const&);
16 ColorChannel(ColorChannel const&);
17 ColorChannel();
18
19#else // LL_PLAT_C
20public:
21 // prevent constructor by default
22 ColorChannel& operator=(ColorChannel const&);
23 ColorChannel(ColorChannel const&);
24
25#endif
26public:
27 // member functions
28 // NOLINTBEGIN
29#ifdef LL_PLAT_C
30 MCNAPI ColorChannel();
31#endif
32 // NOLINTEND
33
34public:
35 // static variables
36 // NOLINTBEGIN
37 MCNAPI static ::ColorChannel const& INVALID();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43#ifdef LL_PLAT_C
44 MCNAPI void* $ctor();
45#endif
46 // NOLINTEND
47};
static MCAPI ::ColorChannel const & INVALID()
Definition Alias.h:14