blob: 26d3ca687ca2502c608c03ec159964b4b793db69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef GUARD_CONSTANTS_COLORS_H
#define GUARD_CONSTANTS_COLORS_H
#define COLOR_WHITE 0
#define COLOR_BLUE 1
#define COLOR_RED 2
#define COLOR_BLACK 3
#define COLOR_GREEN 4
#define COLOR_CYAN 5
#define COLOR_YELLOW 6
#endif //GUARD_CONSTANTS_COLORS_H
|