This commit is contained in:
Mees Roelofsz
2023-12-06 13:25:27 +01:00
parent fa0d1e2ffc
commit 3d49c6e915
3 changed files with 28 additions and 1 deletions

23
web/js/homescreen.js Normal file
View File

@@ -0,0 +1,23 @@
class Startscreen {
constructor(width, height) {
this.width = width;
this.height = height;
}
setup() {
createCanvas(this.width, this.height);
}
draw() {
circle(100, 100, 100)
}
update() {
}
}