aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/Framework/IGridServiceModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid/Framework/IGridServiceModule.cs')
-rw-r--r--OpenSim/Grid/Framework/IGridServiceModule.cs13
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 @@
1using System;
2using OpenSim.Framework.Servers;
3
4namespace 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}