Files
CnC_Remastered_Collection/code/REDALERT/Image.h
T
2020-06-13 18:57:47 -07:00

10 lines
125 B
C

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