aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.ts
diff options
context:
space:
mode:
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;