Files
CnC_Remastered_Collection/code/REDALERT/Image.h
T
2020-06-14 14:56:34 -07:00

11 lines
142 B
C

// Image.h
//
struct Image_t {
char name[512];
unsigned int image;
int width;
int height;
};
Image_t* Image_LoadImage(const char* name);