aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS_TheReturn')
-rw-r--r--ShiftOS_TheReturn/Commands.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/Commands.cs b/ShiftOS_TheReturn/Commands.cs
index d2bfbfd..4571387 100644
--- a/ShiftOS_TheReturn/Commands.cs
+++ b/ShiftOS_TheReturn/Commands.cs
@@ -169,6 +169,13 @@ namespace ShiftOS.Engine {
AppearanceManager.ConsoleOut.Clear();
return true;
}
+
+ [Command("echo")]
+ [RequiresArgument("text")]
+ public static bool Echo(Dictionary<string, object> args) {
+ Console.WriteLine(args["text"]);
+ return true;
+ }
}
#if DEVEL