blob: 1e38ee842208b7ca0cdf4ffc655df4143fb2f15b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef SCREEN_CHOICE_ARENA
#define SCREEN_CHOICE_ARENA
#include "main.h"
#include "arenaFile.h"
#define SCREENSHOT_ARENA_WIDTH 160
#define SCREENSHOT_ARENA_HEIGHT 107
extern void drawScreenChoiceArena();
extern void eventScreenChoiceArena();
extern arenaFile_t* getChoiceArenaId();
extern void setChoiceArenaId(int n);
extern void initScreenChoiceArena();
extern void quitScreenChoiceArena();
#endif
|