#include "tui.h" #include "gui.h" #include "2048.h" int main(int argc, char *argv[]) { Game game; game = game_init(4, 4); /*tui_init(); tui_loop(&game); tui_destroy(); */ gui_init(); gui_loop(&game); gui_destroy(); game_destroy(game); return 0; }