aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/Commands.cs
diff options
context:
space:
mode:
authorCarver Harrison <[email protected]>2017-01-08 12:23:16 -0800
committerGitHub <[email protected]>2017-01-08 12:23:16 -0800
commit03964a4dd7ef92fd47d437584dd88a317d068aea (patch)
treed4808e868125111b7dc35df34fbc4ba31c346111 /ShiftOS_TheReturn/Commands.cs
parent252307cd3eb40e50f28d165d79baea4659b23da0 (diff)
downloadshiftos_thereturn-03964a4dd7ef92fd47d437584dd88a317d068aea.tar.gz
shiftos_thereturn-03964a4dd7ef92fd47d437584dd88a317d068aea.tar.bz2
shiftos_thereturn-03964a4dd7ef92fd47d437584dd88a317d068aea.zip
Added trm.echo command
Diffstat (limited to 'ShiftOS_TheReturn/Commands.cs')
-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