Grabacr07.KanColleWrapper.Master.Master C# (CSharp) Method

Master() private method

private Master ( kcsapi_start2 start2 ) : System
start2 Grabacr07.KanColleWrapper.Models.Raw.kcsapi_start2
return System
		internal Master(kcsapi_start2 start2)
		{
			this.ShipTypes = new MasterTable<ShipType>(start2.api_mst_stype.Select(x => new ShipType(x)));
			this.Ships = new MasterTable<ShipInfo>(start2.api_mst_ship.Select(x => new ShipInfo(x)));
			this.SlotItems = new MasterTable<SlotItemInfo>(start2.api_mst_slotitem.Select(x => new SlotItemInfo(x)));
			this.UseItems = new MasterTable<UseItemInfo>(start2.api_mst_useitem.Select(x => new UseItemInfo(x)));
			this.Missions = new MasterTable<Mission>(start2.api_mst_mission.Select(x => new Mission(x)));
			this.MapAreas = new MasterTable<MapArea>(start2.api_mst_maparea.Select(x => new MapArea(x)));
			this.MapInfos = new MasterTable<MapInfo>(start2.api_mst_mapinfo.Select(x => new MapInfo(x, this.MapAreas)));
		}
	}
Master