Files
J1B2-Game-controller/web/js/homescreen.js
Mees Roelofsz 3d49c6e915 added
2023-12-06 13:25:27 +01:00

23 lines
264 B
JavaScript

class Startscreen {
constructor(width, height) {
this.width = width;
this.height = height;
}
setup() {
createCanvas(this.width, this.height);
}
draw() {
circle(100, 100, 100)
}
update() {
}
}