using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Scripting;
namespace Tango.Stubs
{
///
/// Represents the global object which will be sent to the scripting engine.
///
///
public class StubOnExecuteParameters : OnExecuteParameters
{
///
/// Provides access to the script stub manager.
///
public StubManager stubManager;
///
/// Initializes a new instance of the class.
///
/// The manager.
public StubOnExecuteParameters(StubManager manager)
{
stubManager = manager;
}
}
}