aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/Terminal/Commands
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-10-15 20:25:37 +0100
committerAlex-TIMEHACK <[email protected]>2017-10-15 20:25:37 +0100
commitb2f7322f3072ff90c8e6039ec4b3219d3c3fb919 (patch)
treec9bfc21c4cc20df9eab5dbaa1c12772a90ef0f74 /ShiftOS.Engine/Terminal/Commands
parent7efdde5832b517153363621aaec982211ff25f61 (diff)
downloadshiftos-rewind-b2f7322f3072ff90c8e6039ec4b3219d3c3fb919.tar.gz
shiftos-rewind-b2f7322f3072ff90c8e6039ec4b3219d3c3fb919.tar.bz2
shiftos-rewind-b2f7322f3072ff90c8e6039ec4b3219d3c3fb919.zip
It's broken.
Diffstat (limited to 'ShiftOS.Engine/Terminal/Commands')
-rw-r--r--ShiftOS.Engine/Terminal/Commands/Hello.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/ShiftOS.Engine/Terminal/Commands/Hello.cs b/ShiftOS.Engine/Terminal/Commands/Hello.cs
deleted file mode 100644
index 531bd1f..0000000
--- a/ShiftOS.Engine/Terminal/Commands/Hello.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace ShiftOS.Engine.Terminal.Commands
-{
- public class Hello : TerminalCommand
- {
- public override string GetName()
- {
- return "Hello";
- }
-
- public override string Run(params string[] parameters)
- {
- return "Oh, HELLO, " + String.Join(" ", parameters);
- }
- }
-}