package games;

public interface GameMove {
	public int getRow();

	public int getCol();
}
