/* targa.h : The structure for loading targa type * files. CS425 - F'02 - Ray S. Babcock * (taken from a book entitled "OpenGL * Game Programming"). * */ typedef struct { unsigned char imageTypeCode; short int imageWidth; short int imageHeight; unsigned char bitCount; unsigned char *imageData; }TGAFILE;