public void factionWithdrawInviteCallback(FactionWithdrawInvite_ReturnType returnData)
 {
     this.declineButton.Enabled = true;
     if (returnData.members != null)
     {
         GameEngine.Instance.World.FactionMembers = returnData.members;
         this.m_parent.init(false);
     }
 }
예제 #2
0
 public void OurRemoteAsyncCallBack_FactionWithdrawInvite(IAsyncResult ar)
 {
     RemoteAsyncDelegate_FactionWithdrawInvite asyncDelegate = (RemoteAsyncDelegate_FactionWithdrawInvite) ((AsyncResult) ar).AsyncDelegate;
     try
     {
         this.storeRPCresult(ar, asyncDelegate.EndInvoke(ar));
     }
     catch (Exception exception)
     {
         FactionWithdrawInvite_ReturnType returnData = new FactionWithdrawInvite_ReturnType();
         this.manageRemoteExpection(ar, returnData, exception);
     }
 }