diff options
| author | Franklin Wei <franklin@fwei.tk> | 2014-06-22 20:49:59 -0400 |
|---|---|---|
| committer | Franklin Wei <franklin@fwei.tk> | 2014-06-22 20:49:59 -0400 |
| commit | 6992c1f5cde1b74f8f6d50a54a5ac8b7fd09fbaf (patch) | |
| tree | ad7c1f184ff872d1e875fd2fd2d2c64d3c2c400e /games.c | |
| parent | 592294999517ef547f5c60dd1e324601c98a4758 (diff) | |
| download | wargames-server-6992c1f5cde1b74f8f6d50a54a5ac8b7fd09fbaf.zip wargames-server-6992c1f5cde1b74f8f6d50a54a5ac8b7fd09fbaf.tar.gz wargames-server-6992c1f5cde1b74f8f6d50a54a5ac8b7fd09fbaf.tar.bz2 wargames-server-6992c1f5cde1b74f8f6d50a54a5ac8b7fd09fbaf.tar.xz | |
Added Global Themonuclear War GAME! WHEEgit status
Diffstat (limited to 'games.c')
| -rw-r--r-- | games.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#include <games.h> +#include <curses.h> +#include <map.h> +#include <util.h> +void global_thermonuclear_war(void) +{ + clear(); + for(int i=0;i<sizeof(map)/sizeof(const char*);++i) + { + print_string(map[i]); + print_string("\n"); + } + print_string("\nWHICH SIDE DO YOU WANT?\n\n 1. UNITED STATES\n 2. SOVIET UNION\n\nPLEASE CHOOSE ONE: "); +} |