package Life;

/**
 * This type was created by Jens Elbęk
 */
public class CellLocation 
{
	public int x, y;
	public static int[][] direction = {	{0,-1}, 	//North
										{1,-1},		//North East
										{1,0},  	//East
										{1,1},  	//South East
										{0,1},  	//South
										{-1,1}, 	//South West
										{-1,0}, 	//West
										{-1,-1}		//North West
									};
/**
 * CellLocation constructor comment.
 */
public CellLocation(int parmx, int parmy) {
	super();
	x = parmx;
	y = parmy;
}
}

