package G1.market_simple;

import java.awt.Graphics;

public class Market implements Drawable{
	private int x,y,w,h;
	private int c,q;
	
	public Market(int x, int y, int w, int h, int c, int q) {
		super();
		this.x = x;
		this.y = y;
		this.w = w;
		this.h = h;
		this.c = c;
		this.q = q;
	}

	@Override
	public void drawSelf(Graphics g) {
		g.drawRect(x, y, w,h);
	}
}
