summaryrefslogtreecommitdiff
path: root/src/index.js
blob: 5a376acc66113677f527d40191240733c56ac803 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { prepareBoard } from "./board.js"
import { nextTurn } from "./engine/turns.js"


function start() {
    prepareBoard()
    nextTurn()
}


addEventListener("load", _ => {start()});