passage/gamma256/gameSource/common.h
2025-10-03 02:19:59 -04:00

17 lines
270 B
C

#ifndef COMMON_INCLUDED
#define COMMON_INCLUDED
#include "minorGems/graphics/Image.h"
// reads a TGA file from the default ("graphics") folder
Image *readTGA( const char *inFileName );
Image *readTGA( const char *inFolderName, const char *inFileName );
#endif