public class Map
{
	private String name;
	private ConnectionList connections;
	private Map next;
	private int xPos;
	private int yPos;

	public Map()
	{
		name = "";
		connections = null;
		next = null;
		xPos = 0;
		yPos = 0;
	}

	
}