Grabacr07.KanColleWrapper.Logger.CreateShip C# (CSharp) Method

CreateShip() private method

private CreateShip ( NameValueCollection req ) : void
req System.Collections.Specialized.NameValueCollection
return void
		private void CreateShip(NameValueCollection req)
		{
			this.waitingForShip = true;
			this.dockid = Int32.Parse(req["api_kdock_id"]);
			this.shipmats[0] = Int32.Parse(req["api_item1"]);
			this.shipmats[1] = Int32.Parse(req["api_item2"]);
			this.shipmats[2] = Int32.Parse(req["api_item3"]);
			this.shipmats[3] = Int32.Parse(req["api_item4"]);
			this.shipmats[4] = Int32.Parse(req["api_item5"]);
		}