aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorNathan Vance <nathav63@gmail.com>2015-02-20 13:23:57 -0500
committerNathan Vance <nathav63@gmail.com>2015-02-20 13:23:57 -0500
commit1d79e77722dd8f6a1f0f08128bdd9b361e309f55 (patch)
tree7e085fa54e44b1424b8e1e36db0feb3b3d1c7898 /view.c
parentadded a basic view for wonders (diff)
download7w-1d79e77722dd8f6a1f0f08128bdd9b361e309f55.tar.gz
7w-1d79e77722dd8f6a1f0f08128bdd9b361e309f55.tar.bz2
7w-1d79e77722dd8f6a1f0f08128bdd9b361e309f55.zip
Started backend for game view
Diffstat (limited to 'view.c')
-rw-r--r--view.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/view.c b/view.c
new file mode 100644
index 0000000..beb62aa
--- /dev/null
+++ b/view.c
@@ -0,0 +1,12 @@
+#include "7w.h"
+
+void print_wonder(int x, int y, int player, int cursor);
+void io_printcard(int x, int y, int era, int card);
+void io_printhand(int x, int y, int player, int cursor);
+void io_clearscreen();
+int data_numplayers();
+
+void view_refresh(int focus, int cursor)
+{
+
+}
bgstack15