LeviLamina
Loading...
Searching...
No Matches
Palette.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/actor/PaletteColor.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace mce { class Color; }
11// clang-format on
12
13class Palette {
14public:
15 // static functions
16 // NOLINTBEGIN
17 MCAPI static ::mce::Color const& getColor(::SharedTypes::Legacy::PaletteColor id);
18 // NOLINTEND
19
20public:
21 // static variables
22 // NOLINTBEGIN
23 MCAPI static ::mce::Color const& BLACK();
24
25 MCAPI static ::mce::Color const& BLUE();
26
27 MCAPI static ::mce::Color const& BROWN();
28
29 MCAPI static ::mce::Color const& CYAN();
30
31 MCAPI static ::mce::Color const& GRAY();
32
33 MCAPI static ::mce::Color const& GREEN();
34
35 MCAPI static ::mce::Color const& LIGHT_BLUE();
36
37 MCAPI static ::mce::Color const& LIGHT_GREEN();
38
39 MCAPI static ::mce::Color const& MAGENTA();
40
41 MCAPI static ::mce::Color const& ORANGE();
42
43 MCAPI static ::mce::Color const& PINK();
44
45 MCAPI static ::mce::Color const& PURPLE();
46
47 MCAPI static ::mce::Color const& RED();
48
49 MCAPI static ::mce::Color const& SILVER();
50
51 MCAPI static ::mce::Color const& WHITE();
52
53 MCAPI static ::mce::Color const& YELLOW();
54 // NOLINTEND
55};
Definition Palette.h:13