diff options
| author | Carver Harrison <[email protected]> | 2017-01-08 12:23:16 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-08 12:23:16 -0800 |
| commit | 03964a4dd7ef92fd47d437584dd88a317d068aea (patch) | |
| tree | d4808e868125111b7dc35df34fbc4ba31c346111 /ShiftOS_TheReturn | |
| parent | 252307cd3eb40e50f28d165d79baea4659b23da0 (diff) | |
| download | shiftos_thereturn-03964a4dd7ef92fd47d437584dd88a317d068aea.tar.gz shiftos_thereturn-03964a4dd7ef92fd47d437584dd88a317d068aea.tar.bz2 shiftos_thereturn-03964a4dd7ef92fd47d437584dd88a317d068aea.zip | |
Added trm.echo command
Diffstat (limited to 'ShiftOS_TheReturn')
| -rw-r--r-- | ShiftOS_TheReturn/Commands.cs | 7 |
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 |
