mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
13 lines
225 B
C#
13 lines
225 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.ScriptEngine.Common
|
|
{
|
|
public interface IScript
|
|
{
|
|
string State();
|
|
Executor Exec { get; }
|
|
}
|
|
}
|