slutpet/dat.h
2025-05-26 13:08:18 +10:00

18 lines
261 B
C

typedef struct Image Image;
typedef struct State State;
struct Image {
char *name; /* used for debugging purposes */
int w;
int h;
int bpp;
unsigned char *data;
SDL_Texture *tex;
};
struct State {
SDL_Window *win;
SDL_Renderer *ren;
Image *test;
};