summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index c12dfd9..92101b8 100644
--- a/src/main.c
+++ b/src/main.c
@@ -6,7 +6,11 @@
int main(int argc, char **argv)
{
+ // Example data set for table cards window
+ const tablestacks ts = {{1, 2, 3, 4, 101}, {6, 7, 53, 0, 0}, {11, 55, 0, 0, 0}, {17, 29, 36, 42, 0}};
+
ui_init();
+ ui_choose_stack(ts);
ui_fini();
return EXIT_SUCCESS;