summaryrefslogtreecommitdiff
path: root/include/arena.h
blob: 59290fdd2a2d16010ef4c78bcaae41352946150c (plain)
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