blob: 4a3ef3f6632b4c6dc446a1489dc70ea70e7d3065 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { prepareBoard } from "./board.js"
import { startTurn } from "./engine/turns.js"
function start() {
prepareBoard()
startTurn()
}
addEventListener("load", _ => {start()});
|