Removal junk

This commit is contained in:
Sam
2024-01-02 02:14:57 +01:00
parent f99e16075a
commit 7165efcc94

View File

@@ -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() {
}
}