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 MCNAPI static ::SharedTypes::Legacy::PaletteColor fromByte(uchar id);
18
19 MCNAPI static ::mce::Color const& getColor(::SharedTypes::Legacy::PaletteColor id);
20 // NOLINTEND
21
22public:
23 // static variables
24 // NOLINTBEGIN
25 MCNAPI static ::mce::Color const& BLACK();
26
27 MCNAPI static ::mce::Color const& BLUE();
28
29 MCNAPI static ::mce::Color const& BROWN();
30
31 MCNAPI static ::mce::Color const& CYAN();
32
33 MCNAPI static ::mce::Color const& GRAY();
34
35 MCNAPI static ::mce::Color const& GREEN();
36
37 MCNAPI static ::mce::Color const& LIGHT_BLUE();
38
39 MCNAPI static ::mce::Color const& LIGHT_GREEN();
40
41 MCNAPI static ::mce::Color const& MAGENTA();
42
43 MCNAPI static ::mce::Color const& ORANGE();
44
45 MCNAPI static ::mce::Color const& PINK();
46
47 MCNAPI static ::mce::Color const& PURPLE();
48
49 MCNAPI static ::mce::Color const& RED();
50
51 MCNAPI static ::mce::Color const& SILVER();
52
53 MCNAPI static ::mce::Color const& WHITE();
54
55 MCNAPI static ::mce::Color const& YELLOW();
56 // NOLINTEND
57};
Definition Palette.h:13
static MCAPI ::mce::Color const & GRAY()
static MCAPI ::mce::Color const & BLUE()
static MCAPI ::mce::Color const & RED()
static MCAPI ::mce::Color const & ORANGE()
static MCAPI ::mce::Color const & GREEN()
static MCAPI ::mce::Color const & BLACK()
static MCAPI ::mce::Color const & CYAN()
static MCAPI ::mce::Color const & SILVER()
static MCAPI ::mce::Color const & PURPLE()
static MCAPI ::mce::Color const & LIGHT_BLUE()
static MCAPI ::mce::Color const & BROWN()
static MCAPI ::mce::Color const & PINK()
static MCAPI ::mce::Color const & WHITE()
static MCAPI ::mce::Color const & getColor(::SharedTypes::Legacy::PaletteColor id)
static MCAPI ::mce::Color const & MAGENTA()
static MCAPI ::SharedTypes::Legacy::PaletteColor fromByte(uchar id)
static MCAPI ::mce::Color const & LIGHT_GREEN()
static MCAPI ::mce::Color const & YELLOW()
Definition Color.h:13