blob: c87355e6b1e8f973c6fa544365fed869451eb436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Scripting
{
/// <summary>
/// Represents a base class for a global object which will be embedded in the scripting engine.
/// </summary>
public abstract class OnExecuteParameters
{
}
}
|