aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework
diff options
context:
space:
mode:
authorMW2007-05-31 12:05:32 +0000
committerMW2007-05-31 12:05:32 +0000
commit33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1 (patch)
treece87042013bd75aae144b17a813ba2a24a4e5a5b /Common/OpenSim.Framework
parentThe cleaning lady must be looking for a bonus (diff)
downloadopensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.zip
opensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.tar.gz
opensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.tar.bz2
opensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.tar.xz
Diffstat (limited to 'Common/OpenSim.Framework')
-rw-r--r--Common/OpenSim.Framework/IRegionCommsHost.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Common/OpenSim.Framework/IRegionCommsHost.cs b/Common/OpenSim.Framework/IRegionCommsHost.cs
index 367ecfc..006661d 100644
--- a/Common/OpenSim.Framework/IRegionCommsHost.cs
+++ b/Common/OpenSim.Framework/IRegionCommsHost.cs
@@ -1,6 +1,7 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using OpenSim.Framework.Interfaces;
4 5
5namespace OpenSim.Framework 6namespace OpenSim.Framework
6{ 7{
@@ -8,6 +9,8 @@ namespace OpenSim.Framework
8 9
9 public interface IRegionCommsHost 10 public interface IRegionCommsHost
10 { 11 {
11 event ExpectUserDelegate ExpectUser; 12 event ExpectUserDelegate OnExpectUser;
13 event GenericCall2 OnExpectChildAgent;
14 event GenericCall2 OnAvatarCrossingIntoRegion;
12 } 15 }
13} 16}