2010-03-31 05:21:17 +00:00
|
|
|
#include <ncurses.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <string.h>
|
2010-04-05 00:44:31 +00:00
|
|
|
#include "../lib/display.h"
|
2010-03-31 05:21:17 +00:00
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
2010-04-12 05:56:28 +00:00
|
|
|
initialize_curses();
|
2010-03-31 05:21:17 +00:00
|
|
|
|
2010-04-05 07:33:10 +00:00
|
|
|
initialize_game();
|
2010-04-03 03:32:19 +00:00
|
|
|
|
2010-04-12 05:56:28 +00:00
|
|
|
return(0);
|
2010-03-31 05:21:17 +00:00
|
|
|
}
|