blob: 84edb5c17264caf7036496c63ddf8ad617ff8c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include <cstdint>
namespace crepe {
struct Color {
uint8_t r = 0x00;
uint8_t g = 0x00;
uint8_t b = 0x00;
uint8_t a = 0xff;
static const Color WHITE;
static const Color RED;
static const Color GREEN;
static const Color BLUE;
static const Color CYAN;
static const Color MAGENTA;
static const Color YELLOW;
static const Color BLACK;
};
} // namespace crepe
|