package map;

public class Map 
{
	Cell[][] cells;
	
	public Map(int size)
	{
		cells = new Cell[size][size];
		
		
	}
}
