summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 92101b8114b5fd3ade202284b2a4562a652860e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <curses.h>
#include "ui.h"

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;
}