aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorAdam Frisby2008-04-23 12:21:54 +0000
committerAdam Frisby2008-04-23 12:21:54 +0000
commit3370d581e1c5297721a05db857a016e1d728018f (patch)
treef5e7721843e649a9cf6e760c0a61b7331f227118 /OpenSim/Framework
parent* Another bamboo fix (diff)
downloadopensim-SC_OLD-3370d581e1c5297721a05db857a016e1d728018f.zip
opensim-SC_OLD-3370d581e1c5297721a05db857a016e1d728018f.tar.gz
opensim-SC_OLD-3370d581e1c5297721a05db857a016e1d728018f.tar.bz2
opensim-SC_OLD-3370d581e1c5297721a05db857a016e1d728018f.tar.xz
* Patch #1026 - llDialog support -- Thanks Melanie!
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 53c75b0..fce18c7 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -440,6 +440,8 @@ 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);
444
443 public interface IClientAPI 445 public interface IClientAPI
444 { 446 {
445 event ImprovedInstantMessage OnInstantMessage; 447 event ImprovedInstantMessage OnInstantMessage;
@@ -559,7 +561,8 @@ namespace OpenSim.Framework
559 event ObjectIncludeInSearch OnObjectIncludeInSearch; 561 event ObjectIncludeInSearch OnObjectIncludeInSearch;
560 562
561 event UUIDNameRequest OnTeleportHomeRequest; 563 event UUIDNameRequest OnTeleportHomeRequest;
562 564
565 event ScriptAnswer OnScriptAnswer;
563 566
564 LLVector3 StartPos { get; set; } 567 LLVector3 StartPos { get; set; }
565 568
@@ -695,6 +698,7 @@ namespace OpenSim.Framework
695 698
696 void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, 699 void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout,
697 uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID); 700 uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID);
701 void SendScriptQuestion(LLUUID taskID, string taskName, string ownerName, LLUUID itemID, int question);
698 702
699 byte[] GetThrottlesPacked(float multiplier); 703 byte[] GetThrottlesPacked(float multiplier);
700 704