diff options
author | onefang | 2019-09-11 16:36:50 +1000 |
---|---|---|
committer | onefang | 2019-09-11 16:36:50 +1000 |
commit | 50cd1ffd32f69228e566f2b0b89f86ea0d9fe489 (patch) | |
tree | 52f2ab0c04f1a5d7d6ac5dc872981b4b156447e7 /OpenSim/Services/Interfaces/IMuteLIstService.cs | |
parent | Renamed branch to SledjChisl. (diff) | |
parent | Bump to release flavour, build 0. (diff) | |
download | opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.zip opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.tar.gz opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.tar.bz2 opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.tar.xz |
Merge branch 'SledjChisl'
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Interfaces/IMuteLIstService.cs (renamed from OpenSim/Region/OptionalModules/RegionCombinerModule/RegionCourseLocation.cs) | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/OpenSim/Region/OptionalModules/RegionCombinerModule/RegionCourseLocation.cs b/OpenSim/Services/Interfaces/IMuteLIstService.cs index 224ac99..9ffd47f 100644 --- a/OpenSim/Region/OptionalModules/RegionCombinerModule/RegionCourseLocation.cs +++ b/OpenSim/Services/Interfaces/IMuteLIstService.cs | |||
@@ -27,17 +27,15 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using OpenMetaverse; | ||
31 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenMetaverse; | ||
32 | 32 | ||
33 | namespace OpenSim.Region.RegionCombinerModule | 33 | namespace OpenSim.Services.Interfaces |
34 | { | 34 | { |
35 | 35 | public interface IMuteListService | |
36 | struct RegionCoarseLocationStruct | ||
37 | { | 36 | { |
38 | public List<Vector3> Locations; | 37 | Byte[] MuteListRequest(UUID agent, uint crc); |
39 | public List<UUID> Uuids; | 38 | bool UpdateMute(MuteData mute); |
40 | public IClientAPI UserAPI; | 39 | bool RemoveMute(UUID agentID, UUID muteID, string muteName); |
41 | public Vector2 Offset; | ||
42 | } | 40 | } |
43 | } \ No newline at end of file | 41 | } \ No newline at end of file |