#ifndef _QUAKE_H #define _QUAKE_H /* ** Quake Datatypes ** ** Compilied by Derek J. Evans */ typedef struct { long width; long height; unsigned char color[]; } picture_t; typedef unsigned char colormap_t[32][256]; typedef unsigned char palette_t[256][3]; #endif