diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-19 12:41:49 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:09:50 +0200 |
| commit | 676600a83becf1d8da0ba8f7a56fa8ce544fe7ce (patch) | |
| tree | 4a9009ac3c781585d502342c15a0a7de0129f414 /src/screen/world.h | |
| parent | afb63da1374aadd4a5feccff020e65b616d9b84a (diff) | |
Rectified the coding style in screen .h files
Diffstat (limited to 'src/screen/world.h')
| -rw-r--r-- | src/screen/world.h | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/src/screen/world.h b/src/screen/world.h index 1030dca..35eb74d 100644 --- a/src/screen/world.h +++ b/src/screen/world.h @@ -1,30 +1,28 @@ - #ifndef SCREEN_WORLD_H +#define SCREEN_WORLD_H -# define SCREEN_WORLD_H - -# include "main.h" -# include "myTimer.h" -# include "tux.h" -# include "arenaFile.h" -# include "arena.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 +#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_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_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 +#endif /* SCREEN_WORLD_H */ |