From 18f93056b7d882b4dcce4d3afacd1ba6d37d94ac Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 17 Jan 2017 17:26:27 -0500 Subject: Tutorial backend, deletion of Nancy I'll probably do a SaaS webadmin tool for the MUD in ASP.NET someday. --- ShiftOS_TheReturn/TutorialManager.cs | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 ShiftOS_TheReturn/TutorialManager.cs (limited to 'ShiftOS_TheReturn/TutorialManager.cs') diff --git a/ShiftOS_TheReturn/TutorialManager.cs b/ShiftOS_TheReturn/TutorialManager.cs new file mode 100644 index 0000000..1d8943e --- /dev/null +++ b/ShiftOS_TheReturn/TutorialManager.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ShiftOS.Engine +{ + public static class TutorialManager + { + private static ITutorial _tut = null; + + public static void RegisterTutorial(ITutorial tut) + { + _tut = tut; + _tut.OnComplete += (o, a) => + { + SaveSystem.CurrentSave.StoryPosition = 2; + }; + } + + public static void StartTutorial() + { + _tut.Start(); + } + } + + public interface ITutorial + { + void Start(); + event EventHandler OnComplete; + } +} -- cgit v1.2.3