Fusion.Core.Shell.Invoker.PushAndExecute C# (CSharp) Method

PushAndExecute() public method

public PushAndExecute ( string commandLine ) : object
commandLine string
return object
		public object PushAndExecute ( string commandLine )
		{
			var cmd = Push( commandLine );
			ExecuteQueue( new GameTime(), CommandAffinity.Default, true );
			return cmd.Result;
		}