diff options
author | mingchen | 2008-05-05 17:44:40 +0000 |
---|---|---|
committer | mingchen | 2008-05-05 17:44:40 +0000 |
commit | c535f3947dbcfb78dcac8045c7452f34f8dd79eb (patch) | |
tree | aae82fefa906ac823b46f1291a669d5930a330e1 /OpenSim/Region/Environment/Interfaces/ILandObject.cs | |
parent | * Unraveled the DEBUG_CHANNEL mystery. (diff) | |
download | opensim-SC_OLD-c535f3947dbcfb78dcac8045c7452f34f8dd79eb.zip opensim-SC_OLD-c535f3947dbcfb78dcac8045c7452f34f8dd79eb.tar.gz opensim-SC_OLD-c535f3947dbcfb78dcac8045c7452f34f8dd79eb.tar.bz2 opensim-SC_OLD-c535f3947dbcfb78dcac8045c7452f34f8dd79eb.tar.xz |
*Standardized the Land module by removing all references to libsecondlife.packets
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ILandObject.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ILandObject.cs | 5 |
1 files changed, 2 insertions, 3 deletions
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(); |