unlogic
Loading...
Searching...
No Matches
Color.h
Go to the documentation of this file.
1#ifndef COLOR_H
2#define COLOR_H
3
4namespace unlogic
5{
6 struct Color
7 {
8 float r = 0.0;
9 float g = 0.0;
10 float b = 0.0;
11 float a = 1.0;
12
13 static Color White;
14 static Color Black;
15 static Color Red;
16 static Color Orange;
17 static Color Yellow;
18 static Color Green;
19 static Color Blue;
20 static Color Cyan;
21 static Color Purple;
22 static Color Pink;
23 };
24} // namespace unlogic
25
26#endif // COLOR_H
static Color Pink
Definition Color.h:22
static Color Cyan
Definition Color.h:20
float g
Definition Color.h:9
static Color Red
Definition Color.h:15
float b
Definition Color.h:10
static Color Green
Definition Color.h:18
static Color Blue
Definition Color.h:19
float r
Definition Color.h:8
static Color White
Definition Color.h:13
static Color Orange
Definition Color.h:16
float a
Definition Color.h:11
static Color Black
Definition Color.h:14
static Color Purple
Definition Color.h:21
static Color Yellow
Definition Color.h:17