diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IEntityInventory.cs')
-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 | ||