Remove property/field duplication in ScriptInstance where it's unnecessary.

This commit is contained in:
Justin Clark-Casey (justincc)
2012-03-15 02:02:31 +00:00
parent 2d32401e23
commit acb1355ff2
2 changed files with 114 additions and 169 deletions

View File

@@ -68,8 +68,16 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
/// </summary>
bool Suspended { get; set; }
/// <summary>
/// Is the script shutting down?
/// </summary>
bool ShuttingDown { get; set; }
/// <summary>
/// Script state
/// </summary>
string State { get; set; }
IScriptEngine Engine { get; }
UUID AppDomain { get; set; }
string PrimName { get; }