diff options
| author | Tomas Chvatal <scarabeus@gentoo.org> | 2008-12-11 19:38:00 +0100 |
|---|---|---|
| committer | Tomas Chvatal <scarabeus@gentoo.org> | 2008-12-11 19:38:00 +0100 |
| commit | 3ba6105170ecac2fb124d9eb7e81ba72dd4700b8 (patch) | |
| tree | ec30e2b1dda198c9646ea3447308368bbe334500 /src/screen/world.h | |
| parent | b2d2cf4f53748051ace835d27564cb2922c13db9 (diff) | |
First pass for renaming screen/widget.
Diffstat (limited to 'src/screen/world.h')
| -rw-r--r-- | src/screen/world.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/screen/world.h b/src/screen/world.h new file mode 100644 index 0000000..67935f7 --- /dev/null +++ b/src/screen/world.h @@ -0,0 +1,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 isScreenWorldInicialized(); +extern void initWorld(); +extern void setWorldArena(arenaFile_t * arenaFile); +extern void setWorldEnd(); +extern void countRoundInc(); +extern tux_t *getControlTux(int control_type); +extern void setControlTux(tux_t * tux, int control_type); +extern void tuxControl(tux_t * p); +extern void drawWorld(); +extern void eventWorld(); +extern void startArena(); +extern void stopArena(); +extern void quitWorld(); + +#endif |