2048-homework/main.c

17 lines
233 B
C
Raw Normal View History

2021-11-15 08:57:27 +00:00
#include "SDL.h"
#include "tui.h"
#include "2048.h"
int main(int argc, char *argv[])
{
Game game;
2021-11-15 21:20:16 +00:00
game = game_init(4, 4);
2021-11-15 08:57:27 +00:00
tui_init();
tui_loop(&game);
tui_destroy();
game_destroy(game);
return 0;
}