aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 28047e7..388dfd7 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -440,9 +440,9 @@ namespace OpenSim.Framework
440 440
441 public delegate void ObjectIncludeInSearch(IClientAPI remoteClient, bool IncludeInSearch, uint localID); 441 public delegate void ObjectIncludeInSearch(IClientAPI remoteClient, bool IncludeInSearch, uint localID);
442 442
443 public delegate void ScriptAnswer(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID, int answer); 443 public delegate void ScriptAnswer(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID, int answer);
444 public delegate void RequestPayPrice(IClientAPI remoteClient, LLUUID objectID); 444 public delegate void RequestPayPrice(IClientAPI remoteClient, LLUUID objectID);
445 445
446 public interface IClientAPI 446 public interface IClientAPI
447 { 447 {
448 event ImprovedInstantMessage OnInstantMessage; 448 event ImprovedInstantMessage OnInstantMessage;
@@ -559,13 +559,13 @@ namespace OpenSim.Framework
559 event MoneyBalanceRequest OnMoneyBalanceRequest; 559 event MoneyBalanceRequest OnMoneyBalanceRequest;
560 event UpdateAvatarProperties OnUpdateAvatarProperties; 560 event UpdateAvatarProperties OnUpdateAvatarProperties;
561 event ParcelBuy OnParcelBuy; 561 event ParcelBuy OnParcelBuy;
562 event RequestPayPrice OnRequestPayPrice ; 562 event RequestPayPrice OnRequestPayPrice ;
563 563
564 event ObjectIncludeInSearch OnObjectIncludeInSearch; 564 event ObjectIncludeInSearch OnObjectIncludeInSearch;
565 565
566 event UUIDNameRequest OnTeleportHomeRequest; 566 event UUIDNameRequest OnTeleportHomeRequest;
567 567
568 event ScriptAnswer OnScriptAnswer; 568 event ScriptAnswer OnScriptAnswer;
569 569
570 LLVector3 StartPos { get; set; } 570 LLVector3 StartPos { get; set; }
571 571
@@ -578,8 +578,8 @@ namespace OpenSim.Framework
578 string FirstName { get; } 578 string FirstName { get; }
579 579
580 string LastName { get; } 580 string LastName { get; }
581 581
582 int NextAnimationSequenceNumber { get; } 582 int NextAnimationSequenceNumber { get; }
583 583
584 /// <summary> 584 /// <summary>
585 /// Returns the full name of the agent/avatar represented by this client 585 /// Returns the full name of the agent/avatar represented by this client
@@ -624,7 +624,7 @@ namespace OpenSim.Framework
624 void SendTeleportFailed(string reason); 624 void SendTeleportFailed(string reason);
625 void SendTeleportLocationStart(); 625 void SendTeleportLocationStart();
626 void SendMoneyBalance(LLUUID transaction, bool success, byte[] description, int balance); 626 void SendMoneyBalance(LLUUID transaction, bool success, byte[] description, int balance);
627 void SendPayPrice(LLUUID objectID, int[] payPrice); 627 void SendPayPrice(LLUUID objectID, int[] payPrice);
628 628
629 void SendAvatarData(ulong regionHandle, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, 629 void SendAvatarData(ulong regionHandle, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID,
630 LLVector3 Pos, byte[] textureEntry, uint parentID); 630 LLVector3 Pos, byte[] textureEntry, uint parentID);
@@ -703,7 +703,7 @@ namespace OpenSim.Framework
703 703
704 void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, 704 void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout,
705 uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID); 705 uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID);
706 void SendScriptQuestion(LLUUID taskID, string taskName, string ownerName, LLUUID itemID, int question); 706 void SendScriptQuestion(LLUUID taskID, string taskName, string ownerName, LLUUID itemID, int question);
707 707
708 byte[] GetThrottlesPacked(float multiplier); 708 byte[] GetThrottlesPacked(float multiplier);
709 709