aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/Terminal/Commands/TestStory.cs
blob: 379c7ca60c30047179c3200dd9112fa7eba8ce6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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!");
        }
    }
}