idTech4.idCmdSystem.Cmd_Echo C# (CSharp) Method

Cmd_Echo() private method

Just prints the rest of the line to the console.
private Cmd_Echo ( object sender, CommandEventArgs e ) : void
sender object
e CommandEventArgs
return void
		private void Cmd_Echo(object sender, CommandEventArgs e)
		{
			int count = e.Args.Length;
			
			for(int i = 1; i < count; i++)
			{
				idConsole.Write("{0} ", e.Args.Get(i));
			}

			idConsole.WriteLine("");
		}