Started creation startscreen
This commit is contained in:
23
web/js/homescreen.js
Normal file
23
web/js/homescreen.js
Normal 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() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user