aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs')
-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}