aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples
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/Region/Examples
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/Region/Examples')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 199653d..4f9024c 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -166,6 +166,8 @@ namespace OpenSim.Region.Examples.SimpleModule
166 public event ObjectIncludeInSearch OnObjectIncludeInSearch; 166 public event ObjectIncludeInSearch OnObjectIncludeInSearch;
167 public event UUIDNameRequest OnTeleportHomeRequest; 167 public event UUIDNameRequest OnTeleportHomeRequest;
168 168
169 public event ScriptAnswer OnScriptAnswer;
170
169 171
170#pragma warning restore 67 172#pragma warning restore 67
171 173
@@ -593,5 +595,9 @@ namespace OpenSim.Region.Examples.SimpleModule
593 public void SetClientInfo(ClientInfo info) 595 public void SetClientInfo(ClientInfo info)
594 { 596 {
595 } 597 }
598
599 public void SendScriptQuestion(LLUUID objectID, string taskName, string ownerName, LLUUID itemID, int question)
600 {
601 }
596 } 602 }
597} 603}