From b348a76db785c040d957f055ba9cc8569bf0c285 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 17 Jan 2017 17:08:27 -0500 Subject: Out-of-box experience work It's definitely not working right now. I wouldn't delete your save. I have to implement the tutorial before the OOBE will let you into the game. --- ShiftOS_TheReturn/Infobox.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ShiftOS_TheReturn') diff --git a/ShiftOS_TheReturn/Infobox.cs b/ShiftOS_TheReturn/Infobox.cs index 4e7a87b..dfc72c2 100644 --- a/ShiftOS_TheReturn/Infobox.cs +++ b/ShiftOS_TheReturn/Infobox.cs @@ -60,6 +60,11 @@ namespace ShiftOS.Engine _infobox.Open(title, message); } + public static void PromptText(string title, string message, Action callback) + { + _infobox.PromptText(title, message, callback); + } + /// /// Inits an infobox /// @@ -74,5 +79,6 @@ namespace ShiftOS.Engine public interface IInfobox { void Open(string title, string msg); + void PromptText(string title, string message, Action callback); } } -- cgit v1.2.3