/* --------------------------------------------------------------------

Copyright (c) 1996 by Christopher R. Waterson. All Rights Reserved.
Permission to use, copy, modify, and distribute this software
and its documentation for NON-COMMERCIAL purposes and without
fee is hereby granted provided that this copyright notice
appears in all copies.

$Id$

File:		TileLocation.java
Synopsis:	An (x, y) location of a tile.
Author:		Christopher R. Waterson <waterson@eecs.umich.edu>
Created:	26 January 1996
Updated:	Christopher R. Waterson <waterson@eecs.umich.edu>
Last Modified:	31 October 1996

-------------------------------------------------------------------- */

package eightpuzzle;


/**
 * A tile's location in the puzzle
 */

public class
TileLocation {
	public int x;
	public int y;

	public TileLocation(int X, int Y) {
		x = X; y = Y;
	}
}



