idTech4.idCmdSystem.Cmd_Echo C# (CSharp) Méthode

Cmd_Echo() private méthode

Just prints the rest of the line to the console.
private Cmd_Echo ( object sender, CommandEventArgs e ) : void
sender object
e CommandEventArgs
Résultat 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("");
		}