package G1.market_final;

import java.awt.Graphics;

public interface Drawable {

	void drawSelf(Graphics g);
}
