blob: 1030dca6284e0efd777b0c3a63dd35c7066f0549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef SCREEN_WORLD_H
# define SCREEN_WORLD_H
# include "main.h"
# include "myTimer.h"
# include "tux.h"
# include "arenaFile.h"
# include "arena.h"
# define TIMER_END_ARENA 5000
# define WORLD_COUNT_ROUND_UNLIMITED -1
# define LAG_SERVER_UNKNOWN -1
extern bool_t world_is_inicialized();
extern void world_init();
extern void world_set_arena(arenaFile_t * arenaFile);
extern void world_do_end();
extern void world_inc_round();
extern tux_t *world_get_control_tux(int control_type);
extern void world_set_control_tux(tux_t * tux, int control_type);
extern void world_tux_control(tux_t * p);
extern void world_draw();
extern void world_event();
extern void world_start();
extern void world_stop();
extern void world_quit();
#endif
|