nuke/colors.h

6 lines
171 B
C
Raw Permalink Normal View History

2019-01-03 01:51:33 -08:00
#ifndef __colors
#define __colors
2019-01-05 21:44:59 -08:00
const int WHITE = 1, YELLOW = 2, RED = 3, BLUE = 4, GREEN = 5, BLACK = 6, WHITE_BG = 7,
BLACK_ON_RED = 8, BLACK_ON_GREEN = 9;
2019-01-03 01:51:33 -08:00
#endif