package market;

import java.awt.Graphics;

public class Salesman {
    int c;
    boolean full;
    int x, y;
    
    public Salesman(int c, boolean full, int x, int y) {
	this.c=c;
	this.full=full;
	this.x=x;
	this.y=y;
    }
    
    void drawSelf(Graphics g){
 	g.drawOval(x,y,10,10);
     }
}
