/// <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(); }
public MapLoader(MapLoaderConfig config) { this.config = config; }
public static MapLoader FromConfig(MapLoaderConfig config) { return(new MapLoader(config)); }