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