Exemple #1
0
            public static Map PathFinder()
            {
                Map map = new Map();
                map.TextureName = "terrain.png";
                map.MapFile = "PathFinding.txt";

                map.GenerateTiles();

                return map;
            }
Exemple #2
0
            public static Map DefaultMap()
            {
                Map map = new Map();

                map.TextureName = "terrain.png";
                map.MapFile = "Default.txt";

                map.GenerateTiles();

                return map;
            }