Did I forget to add IScript.cs? Yes I did...

afrisby
Tedd Hansen 2007-08-18 23:38:03 +00:00
parent 37446b0392
commit 489803e6bc
1 changed files with 12 additions and 0 deletions

View File

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