blob: 5a3d3f3e05cff2d473ae91864f33bddc9095d90a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using System.Collections.Generic;
using System.Text;
namespace ScriptAssemblies
{
public interface IScript
{
void ExecuteFunction(string functionName, params object[] args);
}
}
|