1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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