aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.ts
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-06-01 18:53:40 +0200
committerMaksymilian Jopek <maks@jopek.eu>2022-06-01 18:53:40 +0200
commit7a494b148dd03d6346a63641fc479015e7450a26 (patch)
tree08cffc645937617a8d39f456fa4bad04dd80af74 /src/main.ts
parent5413001f654d4ea27129cf2edfc15322f2ba27ec (diff)
download1942-7a494b148dd03d6346a63641fc479015e7450a26.tar.gz
1942-7a494b148dd03d6346a63641fc479015e7450a26.tar.zst
1942-7a494b148dd03d6346a63641fc479015e7450a26.zip
Startscreen adn sfx
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts
index 9f462e5..91e23ec 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -2,9 +2,11 @@ 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;