diff options
| -rw-r--r-- | ShiftOS_TheReturn/Infobox.cs | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/ShiftOS_TheReturn/Infobox.cs b/ShiftOS_TheReturn/Infobox.cs index e45ac69..4e7a87b 100644 --- a/ShiftOS_TheReturn/Infobox.cs +++ b/ShiftOS_TheReturn/Infobox.cs @@ -36,25 +36,41 @@ namespace ShiftOS.Engine { public class Infobox { + // Set the infobox's interface to null private static IInfobox _infobox = null; - + + /// <summary> + /// Creates a new infobox + /// </summary> + /// <param name="title">Infobox title</param> + /// <param name="message">Infobox message</param> [Obsolete("Please use Infobox.Show instead.")] public Infobox(string title, string message) { Infobox.Show(title, message); } - + + /// <summary> + /// Shows an infobox + /// </summary> + /// <param name="title">Infobox title</param> + /// <param name="message">Infobox message</param> public static void Show(string title, string message) { _infobox.Open(title, message); } - + + /// <summary> + /// Inits an infobox + /// </summary> + /// <param name="info">Interface for infobox</param> public static void Init(IInfobox info) { _infobox = info; } } - + + // Infobox Interface public interface IInfobox { void Open(string title, string msg); |
