CS-Coursework/website/index.js
2022-09-29 16:22:48 +01:00

21 lines
295 B
JavaScript

let canvas;
let textbox;
function setup() {
// Creating the canvas
canvas = new Canvas();
canvas.resize();
canvas.center();
textbox = new Textbox();
}
function draw() {
background(255,100,100);
}
function windowResized() {
canvas.resize();
canvas.center();
}