public MapParser(FOGMParser GMParser, string PathMaps, string PathCity) { this.PathCity = PathCity; this.PathMaps = PathMaps; this.Ini = new IniReader(PathMaps); this.GMParser = GMParser; }
public LocationParser(string locationsCfgPath, MapParser mapParse, GWParser gwParse, FOGMParser gmParser) { _ini = new IniReader(locationsCfgPath); _locationsCfgPath = locationsCfgPath; _mapParse = mapParse; _gwParser = gwParse; _gmParser = gmParser; }
public EncounterGroupParser(string filename, FOGAMEParser gameParser, DialogListParser dialogParser, FOGMParser gmParser, MSGParser fodlgParser) { _gameParser = gameParser; _gmParser = gmParser; _fodlgParser = fodlgParser; _filename = filename; _groups = EncounterGroupFormat.Load(filename); }