コード例 #1
0
        public static MenuBase CreateOkCancel(string headerCaption, Action yesAction, Action noAction)
        {
            var b = new RPGMessageBox(headerCaption, "OK", "Cancel", yesAction, noAction);

            return(b);
        }
コード例 #2
0
        public static MenuBase Create(string headerCaption, Action yesAction, Action noAction)
        {
            var b = new RPGMessageBox(headerCaption, "Yes", "No", yesAction, noAction);

            return(b);
        }
コード例 #3
0
        public static MenuBase Create(string headerCaption, string yesText, string noText, Action yesAction, Action noAction)
        {
            var b = new RPGMessageBox(headerCaption, yesText, noText, yesAction, noAction);

            return(b);
        }
コード例 #4
0
ファイル: RPGMessageBox.cs プロジェクト: logicspawn/GTARPG
 public static MenuBase CreateOkCancel(string headerCaption, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, "OK", "Cancel", yesAction, noAction);
     return b;
 }
コード例 #5
0
ファイル: RPGMessageBox.cs プロジェクト: logicspawn/GTARPG
 public static MenuBase Create(string headerCaption, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, "Yes", "No", yesAction, noAction);
     return b;
 }
コード例 #6
0
ファイル: RPGMessageBox.cs プロジェクト: logicspawn/GTARPG
 public static MenuBase Create(string headerCaption, string yesText, string noText, Action yesAction, Action noAction)
 {
     var b = new RPGMessageBox(headerCaption, yesText, noText, yesAction, noAction);
     return b;
 }