diff --git a/static/games/3ds/index.html b/static/games/3ds/index.html
new file mode 100644
index 0000000..7de2854
--- /dev/null
+++ b/static/games/3ds/index.html
@@ -0,0 +1,396 @@
+
+
+
+
+
+
+
+
+ Projekt
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/games/3ds/index.js b/static/games/3ds/index.js
deleted file mode 100644
index adff523..0000000
--- a/static/games/3ds/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
-(function() {
- function myExtension() {}
-
- myExtension.prototype.connectToWiFi = function(networkName, password) {
- // Überprüfe, ob die "navigator.connection" API unterstützt wird
- if ('connection' in navigator && 'wifi' in navigator.connection) {
- // Verbinde mit dem WLAN
- navigator.connection.wifi.associate({ ssid: networkName, password: password })
- .then(function() {
- console.log("Verbindung hergestellt");
- })
- .catch(function(error) {
- console.log("Fehler bei der Verbindung:", error);
- });
- } else {
- console.log("Die WLAN-Verbindung wird von dieser Plattform nicht unterstützt.");
- }
- };
-
- Scratch.extensions.register(new myExtension());
-})();
\ No newline at end of file