diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 87e8ace..690b04e 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -634,9 +634,9 @@ namespace OpenSim.Framework | |||
634 | 634 | ||
635 | LLUUID SecureSessionId { get; } | 635 | LLUUID SecureSessionId { get; } |
636 | 636 | ||
637 | [Obsolete("LLClientView Specific - Use .Name instead. Do not assume an av has two names")] | 637 | [Obsolete("LLClientView Specific - Use .Name instead. Do not assume an av has two names. Adam, this is impossible to completely refactor out. Nor would I suggest it. All applications that i've ever dealt with have firstname and lastname. However the firstname and lastname are not always the username.")] |
638 | string FirstName { get; } | 638 | string FirstName { get; } |
639 | [Obsolete("LLClientView Specific - Use .Name instead. Do not assume an av has two names")] | 639 | [Obsolete("LLClientView Specific - Use .Name instead. Do not assume an av has two names. Adam, this is impossible to completely refactor out. Nor would I suggest it. All applications that i've ever dealt with have firstname and lastname. However the firstname and lastname are not always the username.")] |
640 | string LastName { get; } | 640 | string LastName { get; } |
641 | 641 | ||
642 | [Obsolete("LLClientView Specific - Replace with ???")] | 642 | [Obsolete("LLClientView Specific - Replace with ???")] |
@@ -809,7 +809,7 @@ namespace OpenSim.Framework | |||
809 | 809 | ||
810 | 810 | ||
811 | 811 | ||
812 | [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST please refactor appropriately.")] | 812 | [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")] |
813 | void OutPacket(Packet newPack, ThrottleOutPacketType packType); | 813 | void OutPacket(Packet newPack, ThrottleOutPacketType packType); |
814 | void SendWearables(AvatarWearable[] wearables, int serial); | 814 | void SendWearables(AvatarWearable[] wearables, int serial); |
815 | void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry); | 815 | void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry); |
@@ -969,6 +969,11 @@ namespace OpenSim.Framework | |||
969 | 969 | ||
970 | void SendAgentOnline(LLUUID[] agentIDs); | 970 | void SendAgentOnline(LLUUID[] agentIDs); |
971 | 971 | ||
972 | void SendSitResponse(LLUUID TargetID, LLVector3 OffsetPos, LLQuaternion SitOrientation, bool autopilot, | ||
973 | LLVector3 CameraAtOffset, LLVector3 CameraEyeOffset, bool ForceMouseLook); | ||
974 | |||
975 | void SendAdminResponse(LLUUID Token, uint AdminLevel); | ||
976 | |||
972 | byte[] GetThrottlesPacked(float multiplier); | 977 | byte[] GetThrottlesPacked(float multiplier); |
973 | 978 | ||
974 | 979 | ||