From 3a41ba45e7ac0df930066a79540f82544dbd8114 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 2 Feb 2017 13:51:29 -0500 Subject: Redesign the Infobox, categorize AL items --- ShiftOS_TheReturn/Infobox.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ShiftOS_TheReturn/Infobox.cs') diff --git a/ShiftOS_TheReturn/Infobox.cs b/ShiftOS_TheReturn/Infobox.cs index dfc72c2..8854b88 100644 --- a/ShiftOS_TheReturn/Infobox.cs +++ b/ShiftOS_TheReturn/Infobox.cs @@ -65,6 +65,11 @@ namespace ShiftOS.Engine _infobox.PromptText(title, message, callback); } + public static void PromptYesNo(string title, string message, Action callback) + { + _infobox.PromptYesNo(title, message, callback); + } + /// /// Inits an infobox /// @@ -80,5 +85,6 @@ namespace ShiftOS.Engine { void Open(string title, string msg); void PromptText(string title, string message, Action callback); + void PromptYesNo(string title, string message, Action callback); } } -- cgit v1.2.3