diff options
| author | Michael <[email protected]> | 2017-01-17 17:08:27 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-01-17 17:08:33 -0500 |
| commit | b348a76db785c040d957f055ba9cc8569bf0c285 (patch) | |
| tree | 376a1884c36eb7a0929d5c88078c94986defecbc /ShiftOS_TheReturn/Infobox.cs | |
| parent | a93dd80d4e2f4c97284a1d7bc24b0240358bdd25 (diff) | |
| download | shiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.tar.gz shiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.tar.bz2 shiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.zip | |
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.
Diffstat (limited to 'ShiftOS_TheReturn/Infobox.cs')
| -rw-r--r-- | ShiftOS_TheReturn/Infobox.cs | 6 |
1 files changed, 6 insertions, 0 deletions
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<string> callback) + { + _infobox.PromptText(title, message, callback); + } + /// <summary> /// Inits an infobox /// </summary> @@ -74,5 +79,6 @@ namespace ShiftOS.Engine public interface IInfobox { void Open(string title, string msg); + void PromptText(string title, string message, Action<string> callback); } } |
