20 lines
333 B
C
20 lines
333 B
C
#ifndef MONS_IMAGE_H
|
|
#define MONS_IMAGE_H
|
|
|
|
typedef struct mons_pixel {
|
|
unsigned char r;
|
|
unsigned char g;
|
|
unsigned char b;
|
|
unsigned char a;
|
|
} mons_pixel;
|
|
|
|
typedef struct mons_image {
|
|
unsigned int width;
|
|
unsigned int height;
|
|
mons_pixel *data;
|
|
} mons_image;
|
|
|
|
void mons_image_free(mons_image *image);
|
|
|
|
#endif
|