diff options
-rw-r--r-- | OpenSim/Grid/Framework/IGridServiceModule.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Grid/Framework/IGridServiceModule.cs b/OpenSim/Grid/Framework/IGridServiceModule.cs new file mode 100644 index 0000000..6891beb --- /dev/null +++ b/OpenSim/Grid/Framework/IGridServiceModule.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | using OpenSim.Framework.Servers; | ||
3 | |||
4 | namespace OpenSim.Grid.Framework | ||
5 | { | ||
6 | public interface IGridServiceModule | ||
7 | { | ||
8 | void Close(); | ||
9 | void Initialise(IUGAIMCore core); | ||
10 | void PostInitialise(); | ||
11 | void RegisterHandlers(BaseHttpServer httpServer); | ||
12 | } | ||
13 | } | ||