diff options
-rw-r--r-- | OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs | 5 | ||||
-rw-r--r-- | OpenSim/Grid/GridServer/IGridPlugin.cs | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs b/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs index 420249d..f1acaf9 100644 --- a/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs +++ b/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs | |||
@@ -69,6 +69,11 @@ namespace OpenSim.Grid.GridServer.Modules | |||
69 | SetupGridServices(); | 69 | SetupGridServices(); |
70 | } | 70 | } |
71 | 71 | ||
72 | public void PostInitialise() | ||
73 | { | ||
74 | |||
75 | } | ||
76 | |||
72 | #endregion | 77 | #endregion |
73 | 78 | ||
74 | #region IPlugin Members | 79 | #region IPlugin Members |
diff --git a/OpenSim/Grid/GridServer/IGridPlugin.cs b/OpenSim/Grid/GridServer/IGridPlugin.cs index e2557c0..78aba0c 100644 --- a/OpenSim/Grid/GridServer/IGridPlugin.cs +++ b/OpenSim/Grid/GridServer/IGridPlugin.cs | |||
@@ -33,6 +33,7 @@ namespace OpenSim.Grid.GridServer | |||
33 | public interface IGridPlugin : IPlugin | 33 | public interface IGridPlugin : IPlugin |
34 | { | 34 | { |
35 | void Initialise(GridServerBase gridServer); | 35 | void Initialise(GridServerBase gridServer); |
36 | void PostInitialise(); | ||
36 | } | 37 | } |
37 | 38 | ||
38 | public class GridPluginInitialiser : PluginInitialiserBase | 39 | public class GridPluginInitialiser : PluginInitialiserBase |