add current script status to "scripts show" command (running, suspended, etc.)

This commit is contained in:
Justin Clark-Casey (justincc)
2011-10-19 20:24:07 +01:00
parent ecad9f9fd5
commit 116fbe8258
3 changed files with 31 additions and 7 deletions

View File

@@ -59,10 +59,15 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
public interface IScriptInstance
{
/// <summary>
/// Is this script currently running?
/// Is the script currently running?
/// </summary>
bool Running { get; set; }
/// <summary>
/// Is the script suspended?
/// </summary>
bool Suspended { get; set; }
bool ShuttingDown { get; set; }
string State { get; set; }
IScriptEngine Engine { get; }