diff options
As per the suggestion on the mailing list, added support for a OpenSim.xml config file, instead of a ini file. INI files still work the same as they did before, just now if a ini file isn't found, it looks for a OpenSim.xml file (of course in xml format) and if found uses that.
Includes a OpenSim.Example.xml for reference (the default settings saved as a xml file).
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IRegionLoader.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IRegionLoader.cs b/OpenSim/Framework/IRegionLoader.cs index 87638a9..0a952b7 100644 --- a/OpenSim/Framework/IRegionLoader.cs +++ b/OpenSim/Framework/IRegionLoader.cs | |||
@@ -31,7 +31,7 @@ namespace OpenSim.Framework | |||
31 | { | 31 | { |
32 | public interface IRegionLoader | 32 | public interface IRegionLoader |
33 | { | 33 | { |
34 | void SetIniConfigSource(IniConfigSource configSource); | 34 | void SetIniConfigSource(IConfigSource configSource); |
35 | RegionInfo[] LoadRegions(); | 35 | RegionInfo[] LoadRegions(); |
36 | } | 36 | } |
37 | } \ No newline at end of file | 37 | } \ No newline at end of file |