slutpet/dat.h
2025-06-28 15:59:51 +10:00

15 lines
205 B
C

typedef struct Action Action;
typedef struct Image Image;
struct Action {
// step
// click
};
struct Image {
char *name;
int w, h, bpp;
unsigned char *data;
SDL_Surface *sur;
SDL_Texture *tex;
};