#include #include "board.h" #include "game.h" #include "types.h" int main() { Board b = board_init(); b = game_loop(b); board_delete(b); return 0; }