diff options
author | Nathan Vance <nathav63@gmail.com> | 2015-02-20 13:23:57 -0500 |
---|---|---|
committer | Nathan Vance <nathav63@gmail.com> | 2015-02-20 13:23:57 -0500 |
commit | 1d79e77722dd8f6a1f0f08128bdd9b361e309f55 (patch) | |
tree | 7e085fa54e44b1424b8e1e36db0feb3b3d1c7898 /view.c | |
parent | added a basic view for wonders (diff) | |
download | 7w-1d79e77722dd8f6a1f0f08128bdd9b361e309f55.tar.gz 7w-1d79e77722dd8f6a1f0f08128bdd9b361e309f55.tar.bz2 7w-1d79e77722dd8f6a1f0f08128bdd9b361e309f55.zip |
Started backend for game view
Diffstat (limited to 'view.c')
-rw-r--r-- | view.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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) +{ + +} |