diff options
author | Melanie | 2012-10-18 23:48:35 +0100 |
---|---|---|
committer | Melanie | 2012-10-18 23:48:35 +0100 |
commit | 4fe6d8c3a46a4cce89684f2031a9e30c8eb38751 (patch) | |
tree | 3619c97ae4fed6f3a00ca824a54247e7efcb1fcf /OpenSim/Region/Framework/Interfaces | |
parent | Merge branch 'master' into careminster (diff) | |
parent | minor: Convert ad-hoc list building in ObjectCommandsModule to use ConsoleDis... (diff) | |
download | opensim-SC_OLD-4fe6d8c3a46a4cce89684f2031a9e30c8eb38751.zip opensim-SC_OLD-4fe6d8c3a46a4cce89684f2031a9e30c8eb38751.tar.gz opensim-SC_OLD-4fe6d8c3a46a4cce89684f2031a9e30c8eb38751.tar.bz2 opensim-SC_OLD-4fe6d8c3a46a4cce89684f2031a9e30c8eb38751.tar.xz |
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IEntityInventory.cs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs b/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs index 4274cbe..9d921de 100644 --- a/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs +++ b/OpenSim/Region/Framework/Interfaces/IEntityInventory.cs | |||
@@ -270,17 +270,25 @@ namespace OpenSim.Region.Framework.Interfaces | |||
270 | void ApplyGodPermissions(uint perms); | 270 | void ApplyGodPermissions(uint perms); |
271 | 271 | ||
272 | /// <summary> | 272 | /// <summary> |
273 | /// Number of items in this inventory. | ||
274 | /// </summary> | ||
275 | int Count { get; } | ||
276 | |||
277 | /// <summary> | ||
273 | /// Returns true if this inventory contains any scripts | 278 | /// Returns true if this inventory contains any scripts |
274 | /// </summary></returns> | 279 | /// </summary></returns> |
275 | bool ContainsScripts(); | 280 | bool ContainsScripts(); |
276 | 281 | ||
277 | /// <summary> | 282 | /// <summary> |
278 | /// Returns the count of scripts contained | 283 | /// Number of scripts in this inventory. |
279 | /// </summary></returns> | 284 | /// </summary> |
285 | /// <remarks> | ||
286 | /// Includes both running and non running scripts. | ||
287 | /// </remarks> | ||
280 | int ScriptCount(); | 288 | int ScriptCount(); |
281 | 289 | ||
282 | /// <summary> | 290 | /// <summary> |
283 | /// Returns the count of running scripts contained | 291 | /// Number of running scripts in this inventory. |
284 | /// </summary></returns> | 292 | /// </summary></returns> |
285 | int RunningScriptCount(); | 293 | int RunningScriptCount(); |
286 | 294 | ||