xxxxxxxxxx
13
//classes
class Circle
{
constructor(x,y,xSpeed,ySpeed,locked,spawned)
{
this.x = x;
this.y = y;
this.xSpeed = xSpeed;
this.ySpeed = ySpeed;
this.locked = locked;
this.spawned = spawned;
}
}