diff options
Started work on OpenGrid.Framework.Communications
Diffstat (limited to '')
-rw-r--r-- | Common/OpenSim.Framework/IRegionCommsHost.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/IRegionCommsHost.cs b/Common/OpenSim.Framework/IRegionCommsHost.cs new file mode 100644 index 0000000..367ecfc --- /dev/null +++ b/Common/OpenSim.Framework/IRegionCommsHost.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework | ||
6 | { | ||
7 | public delegate void ExpectUserDelegate(); | ||
8 | |||
9 | public interface IRegionCommsHost | ||
10 | { | ||
11 | event ExpectUserDelegate ExpectUser; | ||
12 | } | ||
13 | } | ||