public ReqPVEExplore FinishPVEExplore(int exploreId)
    {
        ReqPVEExplore component = new ReqPVEExplore();

        component.FinishExplore(exploreId);
        return(component);
    }
    public ReqPVEExplore CancelPVEExplore(int exploreId)
    {
        ReqPVEExplore component = new ReqPVEExplore();

        component.CancelExplore(exploreId);
        return(component);
    }
    public ReqPVEExplore StartPVEExplore(int fleetId, int exploreId)
    {
        ReqPVEExplore component = new ReqPVEExplore();

        component.StartExplore(fleetId, exploreId);
        return(component);
    }
 public ReqPVEExplore CancelPVEExplore(int exploreId)
 {
     ReqPVEExplore component = new ReqPVEExplore();
     component.CancelExplore(exploreId);
     return component;
 }
 public ReqPVEExplore StartPVEExplore(int fleetId, int exploreId)
 {
     ReqPVEExplore component = new ReqPVEExplore();
     component.StartExplore(fleetId, exploreId);
     return component;
 }
 public ReqPVEExplore FinishPVEExplore(int exploreId)
 {
     ReqPVEExplore component = new ReqPVEExplore();
     component.FinishExplore(exploreId);
     return component;
 }
 private void ReqStartExplore(int fleetId, int exploreId)
 {
     this.startingId = exploreId;
     this.startingFleet = fleetId;
     if (!this.isRequestingServer)
     {
         this.isRequestingServer = true;
         this.startPVEExploreReq = ServerRequestManager.instance.StartPVEExplore(fleetId, exploreId);
         this.startPVEExploreReq.StartExploreSuccess += new EventHandler<EventArgs>(this.OnStartExploreSuccess);
         this.startPVEExploreReq.StartExploreFail += new EventHandler<EventArgs>(this.OnStartExploreFail);
     }
 }
 private void ReqFinishExplore(int exploreId)
 {
     this.finishingId = exploreId;
     if (!this.isRequestingServer)
     {
         this.isRequestingServer = true;
         this.finishPVEExploreReq = ServerRequestManager.instance.FinishPVEExplore(exploreId);
         this.finishPVEExploreReq.FinishExploreSuccess += new EventHandler<EventArgs>(this.OnFinishExploreSuccess);
         this.finishPVEExploreReq.FinishExploreFail += new EventHandler<EventArgs>(this.OnFinishExploreFail);
     }
 }