xxxxxxxxxx
19
class Enemy {
constructor() {
this.x= random(45, 335);
this.y= random(-800, 0);
}
move() {
this.y += 2;
if (this.y > height){
this.y = random (-800, 0);
}
}
display() {
rect(this.x, this.y, 10);
}
}