// Arup Guha
// 3/8/2026
// Dot to Eat
// Edited on 3/8/2026 for Abstract class lecture

public class Dot extends Piece {
	
	// Build my fruit!!!
	public Dot(int x, int y) {
		super( new Position(x,y), new Position(0, 0)); 
	}
	
	// String representation of this Fruit.
	public String toString() {
		return "dot at "+loc;
	}
	
	// A fruit's code will be its first letter.
	public char getCode() {
		return '.';
	}

}