aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IPrimCounts.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IPrimCounts.cs')
-rw-r--r--OpenSim/Framework/IPrimCounts.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/OpenSim/Framework/IPrimCounts.cs b/OpenSim/Framework/IPrimCounts.cs
index 7d362c5..8ae57fc 100644
--- a/OpenSim/Framework/IPrimCounts.cs
+++ b/OpenSim/Framework/IPrimCounts.cs
@@ -31,10 +31,34 @@ namespace OpenSim.Framework
31{ 31{
32 public interface IPrimCounts 32 public interface IPrimCounts
33 { 33 {
34 /// <summary>
35 /// Parcel owner owned prims
36 /// </summary>
34 int Owner { get; } 37 int Owner { get; }
38
39 /// <summary>
40 /// Parcel group owned prims
41 /// </summary>
35 int Group { get; } 42 int Group { get; }
43
44 /// <summary>
45 /// Prims owned by others (not parcel owner or parcel group).
46 /// </summary>
36 int Others { get; } 47 int Others { get; }
48
49 /// <summary>
50 /// Total prims on the parcel.
51 /// </summary>
52 int Total { get; }
53
54 /// <summary>
55 /// Prims on the simulator that are owned by the parcel owner, even if they are in other parcels.
56 /// </summary>
37 int Simulator { get; } 57 int Simulator { get; }
58
59 /// <summary>
60 /// Prims per individual users.
61 /// </summary>
38 IUserPrimCounts Users { get; } 62 IUserPrimCounts Users { get; }
39 } 63 }
40 64