blob: 9f462e5e8c21aef078e15bf287104121822e3f15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import "./style.css";
import "./Events";
import loadAllImages from "./Images";
import { start } from "./game";
async function init() {
await loadAllImages();
start();
}
document.body.onload = init;
|