Initial source commit

This commit is contained in:
Tony Bark 2025-10-03 02:19:59 -04:00
commit f1384c11ee
335 changed files with 52715 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#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