예제 #1
0
파일: Map.cs 프로젝트: spiffydudex/navbot
        public Map()
        {
            SolarSystemsReader systemsReader = new SolarSystemsReader();
            solarSystemsByName = systemsReader.SolarSystemsByName;
            solarSystemsById = systemsReader.SolarSystemsById;
            regionsById = systemsReader.RegionsById;

            SolarSystemJumpsReader jumpsReader = new SolarSystemJumpsReader(this);
            StationReader stationReader = new StationReader(this);
            stationsById = stationReader.StationsById;
        }
예제 #2
0
파일: Map.cs 프로젝트: Calthurian/navbot
        public Map()
        {
            SolarSystemsReader systemsReader = new SolarSystemsReader();

            solarSystemsByName = systemsReader.SolarSystemsByName;
            solarSystemsById   = systemsReader.SolarSystemsById;
            regionsById        = systemsReader.RegionsById;

            SolarSystemJumpsReader jumpsReader   = new SolarSystemJumpsReader(this);
            StationReader          stationReader = new StationReader(this);

            stationsById = stationReader.StationsById;
        }