diff --git a/index.html b/index.html index 84f47bb..e8dfb8f 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ - + diff --git a/res/mario.png b/res/mario.png deleted file mode 100644 index e6864fd..0000000 Binary files a/res/mario.png and /dev/null differ diff --git a/script.js b/script.js index 2d42c50..f97923b 100644 --- a/script.js +++ b/script.js @@ -5,7 +5,7 @@ import { MoveDirection } from '/modules/enums.mjs' let canvas = document.getElementById('canvas'); let ctx = canvas.getContext('2d'); window.ctx = ctx -let playground = generatePlayground(level1Blueprint, canvas.width, canvas.height); +let playground = generatePlayground(level2Blueprint, canvas.width, canvas.height); window.addEventListener("keydown", (event) => { if (!event.defaultPrevented) { switch (event.key) {