aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IEntityInventory.cs10
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModule.cs6
2 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs b/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs
index 1334905..f5dda34 100644
--- a/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs
+++ b/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs
@@ -226,6 +226,16 @@ namespace OpenSim.Region.Framework.Interfaces
226 bool ContainsScripts(); 226 bool ContainsScripts();
227 227
228 /// <summary> 228 /// <summary>
229 /// Returns the count of scripts contained
230 /// </summary></returns>
231 int ScriptCount();
232
233 /// <summary>
234 /// Returns the count of running scripts contained
235 /// </summary></returns>
236 int RunningScriptCount();
237
238 /// <summary>
229 /// Get the uuids of all items in this inventory 239 /// Get the uuids of all items in this inventory
230 /// </summary> 240 /// </summary>
231 /// <returns></returns> 241 /// <returns></returns>
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
index 9cab2e1..c0616ed 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
@@ -69,6 +69,12 @@ namespace OpenSim.Region.Framework.Interfaces
69 69
70 ArrayList GetScriptErrors(UUID itemID); 70 ArrayList GetScriptErrors(UUID itemID);
71 71
72 /// <summary>
73 /// Returns true if a script is running.
74 /// </summary>
75 /// <param name="itemID">The item ID of the script.</param>
76 bool GetScriptState(UUID itemID);
77
72 void SaveAllState(); 78 void SaveAllState();
73 79
74 /// <summary> 80 /// <summary>