Some more work on new ScriptEngine.

This commit is contained in:
Tedd Hansen
2007-10-05 19:56:44 +00:00
parent 29aa41daa0
commit 6dd923b01d
35 changed files with 8174 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Grid.ScriptEngine.Common
{
public interface IScript
{
string State();
Executor Exec { get; }
}
}