xxxxxxxxxx
class Pot {
float potXPosition;
float potYPosition;
float potWidth;
Pot() {
potXPosition = width/4;
potYPosition = height/2;
potWidth = 60;
}
void display() {
fill(94, 61, 0);
ellipse(potXPosition, potYPosition, potWidth, potWidth);
}
}