import becker.robots.*;
/**
 * Developed in support for our Decision Project.
 * @author Chris Darcy
 */
public class Heart extends Thing {
	/**
	 * Constructor for this Card suit
	 * @param c the City this Thing is placed in
	 * @param s the street this Thing is placed on
	 * @param a the avenue this Thing is placed on.
	 */
	public Heart(City c, int s, int a) {
		// construct the superclass
		super(c, s, a);
		// give this Thing its identity
		this.setIcon(new SuitIcon("Heart.gif"));
	}
}