diff options
author | Justin Clark-Casey (justincc) | 2011-03-25 23:05:51 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-03-25 23:05:51 +0000 |
commit | 6ae04448f73afdca791ea185fdc0e9c062dea87b (patch) | |
tree | 704c7f3722ae802543c9b0d01bd704ca33f4f720 /OpenSim/Region/Framework/Interfaces/IPrimCountModule.cs | |
parent | Add ILandObject.IPrimCounts for the new prim count module. (diff) | |
download | opensim-SC-6ae04448f73afdca791ea185fdc0e9c062dea87b.zip opensim-SC-6ae04448f73afdca791ea185fdc0e9c062dea87b.tar.gz opensim-SC-6ae04448f73afdca791ea185fdc0e9c062dea87b.tar.bz2 opensim-SC-6ae04448f73afdca791ea185fdc0e9c062dea87b.tar.xz |
Start using IPrimCounts populated by PrimCountModule instead of LandData counts populated by LandManagementModule.
In order to pass ILandObject into IClientAPI.SendLandProperties(), had to push ILandObject and IPrimCounts into OpenSim.Framework from OpenSim.Region.Framework.Interfaces, in order to avoid ci
Counts are showing odd behaviour at the moment, this will be addressed shortly.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IPrimCountModule.cs | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IPrimCountModule.cs b/OpenSim/Region/Framework/Interfaces/IPrimCountModule.cs index 65158e1..d63da2e 100644 --- a/OpenSim/Region/Framework/Interfaces/IPrimCountModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IPrimCountModule.cs | |||
@@ -38,18 +38,4 @@ namespace OpenSim.Region.Framework.Interfaces | |||
38 | 38 | ||
39 | IPrimCounts GetPrimCounts(UUID parcelID); | 39 | IPrimCounts GetPrimCounts(UUID parcelID); |
40 | } | 40 | } |
41 | 41 | } \ No newline at end of file | |
42 | public interface IPrimCounts | ||
43 | { | ||
44 | int Owner { get; } | ||
45 | int Group { get; } | ||
46 | int Others { get; } | ||
47 | int Simulator { get; } | ||
48 | IUserPrimCounts Users { get; } | ||
49 | } | ||
50 | |||
51 | public interface IUserPrimCounts | ||
52 | { | ||
53 | int this[UUID agentID] { get; } | ||
54 | } | ||
55 | } | ||