diff --git a/games/index.html b/games/index.html index 79c15af2..9883442d 100644 --- a/games/index.html +++ b/games/index.html @@ -294,6 +294,14 @@ + +
+
+

Dadish 3

+
+ +
+
diff --git a/images/dadish3.avif b/images/dadish3.avif new file mode 100644 index 00000000..20576f3c Binary files /dev/null and b/images/dadish3.avif differ diff --git a/js/loader.js b/js/loader.js index 5ab416a2..5cf9a88a 100644 --- a/js/loader.js +++ b/js/loader.js @@ -70,6 +70,10 @@ if (gameToLoad) { gameframe.src = 'https://nearpod-currentlyconnectedtolesson.onrender.com/assets/yohoho/index.html'; gamename.textContent = 'Yohoho.io'; gameimage.src = '/images/yohohoio.avif'; + } else if (gameToLoad === 'dadish-3') { + gameframe.src = 'https://dadish3.netlify.app/'; + gamename.textContent = 'Dadish 3'; + gameimage.src = '/images/dadish3.avif'; } else { const imageName = gameToLoad.replace(/-/g, ''); const imageSrcPng = `/images/${imageName}.png`;