finally start on the rewrite
This commit is contained in:
parent
57ad9fd139
commit
fbedd77ed1
7 changed files with 98 additions and 0 deletions
15
dat.h
Normal file
15
dat.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue