aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/IRegionCommsHost.cs
diff options
context:
space:
mode:
authorMW2007-05-31 11:28:11 +0000
committerMW2007-05-31 11:28:11 +0000
commitc35d360d44b639e96e900ef0901ae534f2f6d8c6 (patch)
treecce40adc3bb871e49d7cee1508dea574aba2399c /Common/OpenSim.Framework/IRegionCommsHost.cs
parentAdded a few summary comments to OpenSim.World files (diff)
downloadopensim-SC_OLD-c35d360d44b639e96e900ef0901ae534f2f6d8c6.zip
opensim-SC_OLD-c35d360d44b639e96e900ef0901ae534f2f6d8c6.tar.gz
opensim-SC_OLD-c35d360d44b639e96e900ef0901ae534f2f6d8c6.tar.bz2
opensim-SC_OLD-c35d360d44b639e96e900ef0901ae534f2f6d8c6.tar.xz
Started work on OpenGrid.Framework.Communications
Diffstat (limited to '')
-rw-r--r--Common/OpenSim.Framework/IRegionCommsHost.cs13
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 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Framework
6{
7 public delegate void ExpectUserDelegate();
8
9 public interface IRegionCommsHost
10 {
11 event ExpectUserDelegate ExpectUser;
12 }
13}