From 7165efcc94edbb71b672b0aafccd7ef2604e3d82 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 2 Jan 2024 02:14:57 +0100 Subject: [PATCH] Removal junk --- web/js/homescreen.js | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 web/js/homescreen.js diff --git a/web/js/homescreen.js b/web/js/homescreen.js deleted file mode 100644 index 4f77e83..0000000 --- a/web/js/homescreen.js +++ /dev/null @@ -1,26 +0,0 @@ -class Startscreen { - constructor(width, height) { - this.width = width; - this.height = height; - - } - - setup() { - createCanvas(this.width, this.height); - - } - - - draw() { - push() - circle(100, 100, 100) - fill(255, 0, 255) - pop() - } - - update() { - - } - - -} \ No newline at end of file