LogicSpawn.GTARPG.Core.General.RPGMessageBox.CreateOkCancel C# (CSharp) Method

CreateOkCancel() public static method

public static CreateOkCancel ( string headerCaption, System.Action yesAction, System.Action noAction ) : MenuBase
headerCaption string
yesAction System.Action
noAction System.Action
return MenuBase
        public static MenuBase CreateOkCancel(string headerCaption, Action yesAction, Action noAction)
        {
            var b = new RPGMessageBox(headerCaption, "OK", "Cancel", yesAction, noAction);
            return b;
        }