changes to pass nini config object to the modules that get

loaded so that they may read out any bits they are interested in
This commit is contained in:
Sean Dague
2007-10-19 20:27:34 +00:00
parent aaaa3c6835
commit 139994757c
21 changed files with 1885 additions and 1858 deletions

View File

@@ -27,12 +27,13 @@
*/
using OpenSim.Region.Environment.Scenes;
using Nini.Config;
namespace OpenSim.Region.Environment.Interfaces
{
public interface IRegionModule
{
void Initialise(Scene scene);
void Initialise(Scene scene, IConfigSource source);
void PostInitialise();
void Close();
string Name { get; }