From 24eea3c6900a718ffca598c0b751e16a097bf57d Mon Sep 17 00:00:00 2001 From: AShifter Date: Sun, 25 Feb 2018 14:29:41 -0700 Subject: clean up resources let's get this show on the road baby --- ShiftOS.Main/Terminal/Commands/Hello.cs | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 ShiftOS.Main/Terminal/Commands/Hello.cs (limited to 'ShiftOS.Main/Terminal/Commands/Hello.cs') diff --git a/ShiftOS.Main/Terminal/Commands/Hello.cs b/ShiftOS.Main/Terminal/Commands/Hello.cs deleted file mode 100644 index f4940b5..0000000 --- a/ShiftOS.Main/Terminal/Commands/Hello.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace ShiftOS.Main.Terminal.Commands -{ - public class Hello : TerminalCommand - { - public override string Name { get; } = "Hello"; - public override string Summary { get; } = "Just an example command."; - public override string Usage { get; } = "Hello ."; - public override bool Unlocked { get; set; } = true; - - public override void Run(params string[] parameters) - { - string name = string.Join(" ", parameters); - WriteLine($"Oh, hello, {name}."); - } - } -} -- cgit v1.2.3