diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ILandChannel.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ILandObject.cs | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ILandChannel.cs b/OpenSim/Region/Environment/Interfaces/ILandChannel.cs index 464a213..ce79a8f 100644 --- a/OpenSim/Region/Environment/Interfaces/ILandChannel.cs +++ b/OpenSim/Region/Environment/Interfaces/ILandChannel.cs | |||
@@ -27,7 +27,6 @@ | |||
27 | 27 | ||
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using libsecondlife.Packets; | ||
31 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
32 | using OpenSim.Region.Environment.Scenes; | 31 | using OpenSim.Region.Environment.Scenes; |
33 | 32 | ||
@@ -56,7 +55,7 @@ namespace OpenSim.Region.Environment.Interfaces | |||
56 | 55 | ||
57 | void sendParcelOverlay(IClientAPI remote_client); | 56 | void sendParcelOverlay(IClientAPI remote_client); |
58 | void handleParcelPropertiesRequest(int start_x, int start_y, int end_x, int end_y, int sequence_id, bool snap_selection, IClientAPI remote_client); | 57 | void handleParcelPropertiesRequest(int start_x, int start_y, int end_x, int end_y, int sequence_id, bool snap_selection, IClientAPI remote_client); |
59 | void handleParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); | 58 | void handleParcelPropertiesUpdateRequest(LandUpdateArgs args, int localID, IClientAPI remote_client); |
60 | void handleParcelDivideRequest(int west, int south, int east, int north, IClientAPI remote_client); | 59 | void handleParcelDivideRequest(int west, int south, int east, int north, IClientAPI remote_client); |
61 | void handleParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client); | 60 | void handleParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client); |
62 | void handleParcelSelectObjectsRequest(int local_id, int request_type, IClientAPI remote_client); | 61 | void handleParcelSelectObjectsRequest(int local_id, int request_type, IClientAPI remote_client); |
diff --git a/OpenSim/Region/Environment/Interfaces/ILandObject.cs b/OpenSim/Region/Environment/Interfaces/ILandObject.cs index 420ffc3..25c51de 100644 --- a/OpenSim/Region/Environment/Interfaces/ILandObject.cs +++ b/OpenSim/Region/Environment/Interfaces/ILandObject.cs | |||
@@ -27,7 +27,6 @@ | |||
27 | 27 | ||
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using libsecondlife.Packets; | ||
31 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
32 | using OpenSim.Region.Environment.Scenes; | 31 | using OpenSim.Region.Environment.Scenes; |
33 | 32 | ||
@@ -44,12 +43,12 @@ namespace OpenSim.Region.Environment.Interfaces | |||
44 | void sendLandUpdateToAvatarsOverMe(); | 43 | void sendLandUpdateToAvatarsOverMe(); |
45 | 44 | ||
46 | void sendLandProperties(int sequence_id, bool snap_selection, int request_result, IClientAPI remote_client); | 45 | void sendLandProperties(int sequence_id, bool snap_selection, int request_result, IClientAPI remote_client); |
47 | void updateLandProperties(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); | 46 | void updateLandProperties(LandUpdateArgs args, IClientAPI remote_client); |
48 | bool isEitherBannedOrRestricted(LLUUID avatar); | 47 | bool isEitherBannedOrRestricted(LLUUID avatar); |
49 | bool isBannedFromLand(LLUUID avatar); | 48 | bool isBannedFromLand(LLUUID avatar); |
50 | bool isRestrictedFromLand(LLUUID avatar); | 49 | bool isRestrictedFromLand(LLUUID avatar); |
51 | void sendLandUpdateToClient(IClientAPI remote_client); | 50 | void sendLandUpdateToClient(IClientAPI remote_client); |
52 | ParcelAccessListReplyPacket.ListBlock[] createAccessListArrayByFlag(ParcelManager.AccessList flag); | 51 | List<LLUUID> createAccessListArrayByFlag(ParcelManager.AccessList flag); |
53 | void sendAccessList(LLUUID agentID, LLUUID sessionID, uint flags, int sequenceID, IClientAPI remote_client); | 52 | void sendAccessList(LLUUID agentID, LLUUID sessionID, uint flags, int sequenceID, IClientAPI remote_client); |
54 | void updateAccessList(uint flags, List<ParcelManager.ParcelAccessEntry> entries, IClientAPI remote_client); | 53 | void updateAccessList(uint flags, List<ParcelManager.ParcelAccessEntry> entries, IClientAPI remote_client); |
55 | void updateLandBitmapByteArray(); | 54 | void updateLandBitmapByteArray(); |