diff options
author | onefang | 2019-05-19 21:24:15 +1000 |
---|---|---|
committer | onefang | 2019-05-19 21:24:15 +1000 |
commit | 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb (patch) | |
tree | a9fbc62df9eb2d1d9ba2698d8552eae71eca20d8 /OpenSim/Services/Interfaces/IMuteLIstService.cs | |
parent | Add a build script. (diff) | |
download | opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.zip opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.gz opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.bz2 opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.xz |
Dump OpenSim 0.9.0.1 into it's own branch.
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 |