diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-02-01 22:59:06 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-02-01 22:59:06 +0000 |
| commit | 6d4e1eae16b84918009625a866104ec26a234277 (patch) | |
| tree | a340a8a547a60c9f63c8dfafe8909242f9c9bbd8 /include/arena.h | |
nahranie tarballu tuxanci-ng na SVN server
Dusan Durech ( Oroborus )
git-svn-id: http://opensvn.csie.org/tuxanci_ng@1 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
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 |