aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples
diff options
context:
space:
mode:
authorHomer Horwitz2008-10-12 16:29:29 +0000
committerHomer Horwitz2008-10-12 16:29:29 +0000
commitf52c5febd3b87af795b8eb2a909d332ba8cddbff (patch)
treea707769d7b10051a0f5d6d7ec7b6b155e4fdeba6 /OpenSim/Region/Examples
parentremoved some more extraneous hidden faces (diff)
downloadopensim-SC_OLD-f52c5febd3b87af795b8eb2a909d332ba8cddbff.zip
opensim-SC_OLD-f52c5febd3b87af795b8eb2a909d332ba8cddbff.tar.gz
opensim-SC_OLD-f52c5febd3b87af795b8eb2a909d332ba8cddbff.tar.bz2
opensim-SC_OLD-f52c5febd3b87af795b8eb2a909d332ba8cddbff.tar.xz
Add EventInfoRequest and EventInfoReply packets.
Note: New file, run prebuild.
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index ef78cb5..61791fb 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -224,7 +224,7 @@ namespace OpenSim.Region.Examples.SimpleModule
224 public event DirLandQuery OnDirLandQuery; 224 public event DirLandQuery OnDirLandQuery;
225 public event DirPopularQuery OnDirPopularQuery; 225 public event DirPopularQuery OnDirPopularQuery;
226 public event DirClassifiedQuery OnDirClassifiedQuery; 226 public event DirClassifiedQuery OnDirClassifiedQuery;
227 227 public event EventInfoRequest OnEventInfoRequest;
228 228
229 public event MapItemRequest OnMapItemRequest; 229 public event MapItemRequest OnMapItemRequest;
230 230
@@ -932,5 +932,9 @@ namespace OpenSim.Region.Examples.SimpleModule
932 public void KillEndDone() 932 public void KillEndDone()
933 { 933 {
934 } 934 }
935
936 public void SendEventInfoReply (EventData info)
937 {
938 }
935 } 939 }
936} 940}