diff options
author | MW | 2007-05-31 11:28:11 +0000 |
---|---|---|
committer | MW | 2007-05-31 11:28:11 +0000 |
commit | c35d360d44b639e96e900ef0901ae534f2f6d8c6 (patch) | |
tree | cce40adc3bb871e49d7cee1508dea574aba2399c /Common/OpenSim.Framework/IRegionCommsHost.cs | |
parent | Added a few summary comments to OpenSim.World files (diff) | |
download | opensim-SC-c35d360d44b639e96e900ef0901ae534f2f6d8c6.zip opensim-SC-c35d360d44b639e96e900ef0901ae534f2f6d8c6.tar.gz opensim-SC-c35d360d44b639e96e900ef0901ae534f2f6d8c6.tar.bz2 opensim-SC-c35d360d44b639e96e900ef0901ae534f2f6d8c6.tar.xz |
Started work on OpenGrid.Framework.Communications
Diffstat (limited to 'Common/OpenSim.Framework/IRegionCommsHost.cs')
-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 | } | ||