Merge pull request #22 from carverh/patch-12

Added trm.echo command
This commit is contained in:
william341 2017-01-08 13:27:29 -07:00 committed by GitHub
commit 51208cb5c8

View file

@ -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