aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorAdam Frisby2008-05-12 20:29:56 +0000
committerAdam Frisby2008-05-12 20:29:56 +0000
commitf78c5aedbf8e7a8cea3501244cb6a85a2a66bde6 (patch)
tree78c19c0e9d69c181ee9942d5ec5fa91a13f75bec /OpenSim
parentmy last patch didn't actually get the sun to possition correctly, but (diff)
downloadopensim-SC_OLD-f78c5aedbf8e7a8cea3501244cb6a85a2a66bde6.zip
opensim-SC_OLD-f78c5aedbf8e7a8cea3501244cb6a85a2a66bde6.tar.gz
opensim-SC_OLD-f78c5aedbf8e7a8cea3501244cb6a85a2a66bde6.tar.bz2
opensim-SC_OLD-f78c5aedbf8e7a8cea3501244cb6a85a2a66bde6.tar.xz
* Added some build warnings for Teravus. :)
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/IClientAPI.cs12
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index b79dec0..64b68d9 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -632,10 +632,12 @@ namespace OpenSim.Framework
632 632
633 LLUUID SecureSessionId { get; } 633 LLUUID SecureSessionId { get; }
634 634
635 [Obsolete("LLClientView Specific - Use .Name instead. Do not assume an av has two names")]
635 string FirstName { get; } 636 string FirstName { get; }
636 637 [Obsolete("LLClientView Specific - Use .Name instead. Do not assume an av has two names")]
637 string LastName { get; } 638 string LastName { get; }
638 639
640 [Obsolete("LLClientView Specific - Replace with ???")]
639 int NextAnimationSequenceNumber { get; } 641 int NextAnimationSequenceNumber { get; }
640 642
641 /// <summary> 643 /// <summary>
@@ -651,13 +653,21 @@ namespace OpenSim.Framework
651 set; 653 set;
652 } 654 }
653 655
656 [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")]
654 uint CircuitCode { get; } 657 uint CircuitCode { get; }
658 [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")]
655 event ImprovedInstantMessage OnInstantMessage; 659 event ImprovedInstantMessage OnInstantMessage;
660 [Obsolete("LLClientView Specific - Replace with more bare-bones arguments. Rename OnChat.")]
656 event ChatFromViewer OnChatFromViewer; 661 event ChatFromViewer OnChatFromViewer;
662 [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")]
657 event TextureRequest OnRequestTexture; 663 event TextureRequest OnRequestTexture;
664 [Obsolete("LLClientView Specific - Remove bitbuckets.")]
658 event RezObject OnRezObject; 665 event RezObject OnRezObject;
666 [Obsolete("LLClientView Specific - Replace with more suitable arguments.")]
659 event ModifyTerrain OnModifyTerrain; 667 event ModifyTerrain OnModifyTerrain;
668 [Obsolete("LLClientView Specific.")]
660 event SetAppearance OnSetAppearance; 669 event SetAppearance OnSetAppearance;
670 [Obsolete("LLClientView Specific - Replace and rename OnAvatarUpdate. Difference from SetAppearance?")]
661 event AvatarNowWearing OnAvatarNowWearing; 671 event AvatarNowWearing OnAvatarNowWearing;
662 event RezSingleAttachmentFromInv OnRezSingleAttachmentFromInv; 672 event RezSingleAttachmentFromInv OnRezSingleAttachmentFromInv;
663 event UUIDNameRequest OnDetachAttachmentIntoInv; 673 event UUIDNameRequest OnDetachAttachmentIntoInv;