I'm getting the error "expecting RCURLY, found 'else'" and I can't figure out why. I've been using Processing for about a week so excuse the silly errors I'm sure there are.
class Ball{
float xpos, ypos;
color myColor;
boolean placed = false;
Ball(color tempcolor){
myColor=tempcolor;
}
}