blob: 7ea34e0262f6a509ccb072c129475e485ea8d28e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CONSTANTS_H
#define CONSTANTS_H
namespace constants {
const int col_gud_r = 40;
const int col_gud_g = 120;
const int col_gud_b = 0;
const int col_bad_r = 255;
const int col_bad_g = 120;
const int col_bad_b = 0;
}
#endif
|