summaryrefslogtreecommitdiff
path: root/main.c
blob: b11a8804431d28eb5f7e5055c834b1d61e554ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

#include "board.h"
#include "game.h"
#include "types.h"

int main() {
    Board b = board_init();
    b = game_loop(b);
    board_delete(b);

    return 0;
}
nihil fit ex nihilo