blob: b06637ccd6d383003d6ce43f875d0502016c06ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #0using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Scripting;
namespace Tango.MachineStudio.UI.Console
{
public class ConsoleOnExecuteParameters : OnExecuteParameters
{
/// <summary>
/// Provides access to the script stub manager.
/// </summary>
public ConsoleManager manager;
/// <summary>
/// Initializes a new instance of the <see cref="StubOnExecuteParameters"/> class.
/// </summary>
/// <param name="manager">The manager.</param>
public ConsoleOnExecuteParameters(ConsoleManager manager)
{
this.manager = manager;
}
}
}
|