コード例 #1
0
ファイル: UIExtension.cs プロジェクト: lanfengnan/AirForce
 public static void OpenDialog(this UIComponent uiComponent, UIDialogParams dialogParams)
 {
     if (((ProcedureBase)GameEntry.Procedure.CurrentProcedure).UseNativeDialog)
     {
         OpenNativeDialog(dialogParams);
     }
     else
     {
         uiComponent.OpenUIForm(UIFormId.Dialog, dialogParams);
     }
 }
コード例 #2
0
ファイル: UIExtension.cs プロジェクト: lanfengnan/AirForce
 private static void OpenNativeDialog(UIDialogParams dialogParams)
 {
     throw new System.NotImplementedException("OpenNativeDialog");
 }