mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 08:00:55 +02:00
11 lines
142 B
C
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); |