diff options
| author | AShifter <[email protected]> | 2017-11-18 11:53:07 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-11-18 11:53:07 -0700 |
| commit | 14036dbe5d44caa1a5d612f3b5e8a269a8c899ad (patch) | |
| tree | 66c69edbf9cd710c114bb823512fc289a13c4f1e /ShiftOS.Main/Terminal | |
| parent | ad5f166619c4f7a81bb708aea6cf5b5e9ab11a1e (diff) | |
| parent | b61561692cc0e211f65495f67e2968aa04e81c8a (diff) | |
| download | shiftos-rewind-14036dbe5d44caa1a5d612f3b5e8a269a8c899ad.tar.gz shiftos-rewind-14036dbe5d44caa1a5d612f3b5e8a269a8c899ad.tar.bz2 shiftos-rewind-14036dbe5d44caa1a5d612f3b5e8a269a8c899ad.zip | |
Merge remote-tracking branch 'refs/remotes/ShiftOS-Rewind/master'
Diffstat (limited to 'ShiftOS.Main/Terminal')
| -rw-r--r-- | ShiftOS.Main/Terminal/Commands/TestStory.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ShiftOS.Main/Terminal/Commands/TestStory.cs b/ShiftOS.Main/Terminal/Commands/TestStory.cs new file mode 100644 index 0000000..379c7ca --- /dev/null +++ b/ShiftOS.Main/Terminal/Commands/TestStory.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; + +namespace ShiftOS.Main.Terminal.Commands +{ + public class TestStory : TerminalCommand + { + public override string Name { get; } = "teststory"; + public override string Summary { get; } = "Debug Command - Test the intro"; + public override string Usage { get; } = "n/a"; + public override bool Unlocked { get; set; } = false; + + public override void Run(params string[] parameters) + { + WriteLine("Incoming connection..."); + Thread.Sleep(2000); + WriteLine("User set alias as \"DevX\"."); + Thread.Sleep(2000); + WriteLine("User <DevX> has connected successfully!"); + } + } +} |
