public static Map PathFinder() { Map map = new Map(); map.TextureName = "terrain.png"; map.MapFile = "PathFinding.txt"; map.GenerateTiles(); return map; }
public static Map DefaultMap() { Map map = new Map(); map.TextureName = "terrain.png"; map.MapFile = "Default.txt"; map.GenerateTiles(); return map; }