diff options
author | Sean Dague | 2007-10-19 20:27:34 +0000 |
---|---|---|
committer | Sean Dague | 2007-10-19 20:27:34 +0000 |
commit | 139994757c7dab04dd03801266525e8c53395a5e (patch) | |
tree | 003ec2557de6dd80dbe1e7bc78efe8958d02d5ae /OpenSim/Region/Environment/Interfaces | |
parent | * Test thy commits! (oops, sorry!) (diff) | |
download | opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.zip opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.tar.gz opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.tar.bz2 opensim-SC_OLD-139994757c7dab04dd03801266525e8c53395a5e.tar.xz |
changes to pass nini config object to the modules that get
loaded so that they may read out any bits they are interested in
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IRegionModule.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IRegionModule.cs b/OpenSim/Region/Environment/Interfaces/IRegionModule.cs index e60c42b..808b94a 100644 --- a/OpenSim/Region/Environment/Interfaces/IRegionModule.cs +++ b/OpenSim/Region/Environment/Interfaces/IRegionModule.cs | |||
@@ -27,12 +27,13 @@ | |||
27 | */ | 27 | */ |
28 | 28 | ||
29 | using OpenSim.Region.Environment.Scenes; | 29 | using OpenSim.Region.Environment.Scenes; |
30 | using Nini.Config; | ||
30 | 31 | ||
31 | namespace OpenSim.Region.Environment.Interfaces | 32 | namespace OpenSim.Region.Environment.Interfaces |
32 | { | 33 | { |
33 | public interface IRegionModule | 34 | public interface IRegionModule |
34 | { | 35 | { |
35 | void Initialise(Scene scene); | 36 | void Initialise(Scene scene, IConfigSource source); |
36 | void PostInitialise(); | 37 | void PostInitialise(); |
37 | void Close(); | 38 | void Close(); |
38 | string Name { get; } | 39 | string Name { get; } |