1 /* bzflag
2  * Copyright (c) 1993-2021 Tim Riker
3  *
4  * This package is free software;  you can redistribute it and/or
5  * modify it under the terms of the license found in the file
6  * named COPYING that should have accompanied this file.
7  *
8  * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
9  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
10  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11  */
12 
13 #ifndef COLORS_H
14 #define COLORS_H
15 
16 enum ColorCode
17 {
18     Default = 0,
19     White,
20     Red,
21     Green,
22     Blue,
23     Purple,
24     Yellow,
25     Cyan
26 };
27 
28 #endif
29 
30 // Local Variables: ***
31 // mode: C++ ***
32 // tab-width: 4 ***
33 // c-basic-offset: 4 ***
34 // indent-tabs-mode: nil ***
35 // End: ***
36 // ex: shiftwidth=4 tabstop=4
37