diff options
Diffstat (limited to 'include/arena.h')
| -rw-r--r-- | include/arena.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/arena.h b/include/arena.h new file mode 100644 index 0000000..59290fd --- /dev/null +++ b/include/arena.h @@ -0,0 +1,23 @@ + +#ifndef ARENA_H + +#define ARENA_H + +#include "main.h" +#include "interface.h" +#include "list.h" + +typedef struct arena_struct +{ + char music[STR_SIZE]; + SDL_Surface *background; + list_t *listTux; + list_t *listShot; + list_t *listWall; + list_t *listItem; +} arena_t; + +extern arena_t* newArena(); +extern void destroyArena(arena_t *p); + +#endif |