aboutsummaryrefslogtreecommitdiff
path: root/games.c
diff options
context:
space:
mode:
Diffstat (limited to 'games.c')
-rw-r--r--games.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/games.c b/games.c
new file mode 100644
index 0000000..2b81ad7
--- /dev/null
+++ b/games.c
@@ -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: ");
+}