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