1 /*
2  *	palview.h
3  *	Palette (PLAYPAL & COLORMAP) viewer
4  *	AYM 1999-11-11
5  */
6 
7 
8 #ifndef YH_PALVIEW
9 #define YH_PALVIEW
10 
11 
12 class Palette_viewer
13 {
14   public :
15     void run ();
16 
17   private :
18     void draw_cursor (int c, bool phase);
19 
20     static const int ncolours = DOOM_COLOURS;
21     static const int pixels   = 16;
22     static const int columns  = 16;
23     int              i;
24     int              ofs;
25     int              ix0;
26     int              iy0;
27 };
28 
29 
30 #endif
31