permission hook working correctly, good bye temp file
[physics.git] / src / graphics / colors.h
... / ...
CommitLineData
1
2/// ***** Public Variables *****
3
4static float const cWhite[] = {1.0, 1.0, 1.0};
5static float const cBlack[] = {0.0, 0.0, 0.0};
6static float const cGrey[] = {0.5, 0.5, 0.5};
7
8static float const cRed[] = {1.0, 0.0, 0.0};
9static float const cGreen[] = {0.0, 1.0, 0.0};
10static float const cBlue[] = {0.0, 0.0, 1.0};
11
12static float const cYellow[] = {1.0, 1.0, 0.0};
13static float const cMagenta[] = {1.0, 0.0, 1.0};
14static float const cCyan[] = {0.0, 1.0, 1.0};