Пример #1
0
 /// <summary>
 /// Creates a MapLoader instance that uses the current directory and has no ancillary maps configured.
 /// This can be useful for loading only a singular map directly.
 /// </summary>
 public MapLoader()
 {
     this.config = new MapLoaderConfig();
 }
Пример #2
0
 public MapLoader(MapLoaderConfig config)
 {
     this.config = config;
 }
Пример #3
0
 public static MapLoader FromConfig(MapLoaderConfig config)
 {
     return(new MapLoader(config));
 }