00001 /*************************************************************************** 00002 * NGT (Neopontec Gaming Toolkit * 00003 * Distributed under the terms of the GNU LGPL License * 00004 * Copyright (C) 2005 by Hector Blanco de Frutos * 00005 * hectorblanco@neopontec.com * 00006 * Refer to the LICENSE file to read the full license agreement * 00007 ***************************************************************************/ 00008 00009 #ifndef VIDEO_COLORS_H_ 00010 #define VIDEO_COLORS_H_ 00011 00012 #include "../ngt.h" 00013 00015 00018 class NGT_Colors{ 00019 public: 00020 SDL_Color black; 00021 SDL_Color white; 00022 SDL_Color grey; 00023 SDL_Color darkgrey; 00024 SDL_Color violet; 00025 SDL_Color violetblue; 00026 SDL_Color yellow; 00027 SDL_Color darkyellow; 00028 SDL_Color lightblue; 00029 00030 00031 NGT_Colors(); 00033 00038 void initialize(); 00039 00040 }; 00041 00042 #endif 00043