diff options
author | Talun | 2012-04-09 19:58:07 +0100 |
---|---|---|
committer | Melanie | 2012-04-09 21:25:22 +0100 |
commit | 78c0028179923710949fea349baad2e6bebc49bd (patch) | |
tree | ad83b28069f46f0890cae3f9405f3d4c5f273da8 /OpenSim/Region/Framework/Interfaces | |
parent | Addresses mantis #5846 (diff) | |
download | opensim-SC_OLD-78c0028179923710949fea349baad2e6bebc49bd.zip opensim-SC_OLD-78c0028179923710949fea349baad2e6bebc49bd.tar.gz opensim-SC_OLD-78c0028179923710949fea349baad2e6bebc49bd.tar.bz2 opensim-SC_OLD-78c0028179923710949fea349baad2e6bebc49bd.tar.xz |
Mantis5502 implementation of some of the new constants
Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IEntityInventory.cs | 10 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScriptModule.cs | 6 |
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> |