xxxxxxxxxx
36
let cookieImg
let cookie
let numCookies = 0
function preload() {
cookieImg = loadImage("images/Cookie.png")
}
function mousePressed() {
cookie.clicked()
}
function setup() {
createCanvas(640, 480)
cookie = new Cookie()
}
function draw() {
background(255)
push()
textAlign(CENTER, CENTER)
textSize(40)
text(numCookies + " cookies", width / 2, 50)
pop()
cookie.update()
cookie.show()
push()
textAlign(LEFT, BOTTOM)
textSize(32)
text("v0.1", 5, height - 5)
pop()
}