-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraylib.c
More file actions
26 lines (25 loc) · 719 Bytes
/
raylib.c
File metadata and controls
26 lines (25 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "raylib.h"
const Color black = BLACK;
const Color white = WHITE;
const Color lightgray = LIGHTGRAY;
const Color gray = GRAY;
const Color darkgray = DARKGRAY;
const Color yellow = YELLOW;
const Color gold = GOLD;
const Color orange = ORANGE;
const Color pink = PINK;
const Color red = RED;
const Color maroon = MAROON;
const Color green = GREEN;
const Color lime = LIME;
const Color darkgreen = DARKGREEN;
const Color skyblue = SKYBLUE;
const Color blue = BLUE;
const Color purple = PURPLE;
const Color violet = VIOLET;
const Color darkpurple = DARKPURPLE;
const Color beige = BEIGE;
const Color darkbrown = DARKBROWN;
const Color blank = BLANK;
const Color magenta = MAGENTA;
const Color raywhite = RAYWHITE;