From 571b94f537cc1f431ed52e6a185863ae17357f30 Mon Sep 17 00:00:00 2001 From: MW Date: Wed, 5 Nov 2008 20:14:52 +0000 Subject: moved the initial loading/setting of the config settings to its own class, ConfigurationLoader. To make it easier to customise the loading of those settings and possible in the future move it to a plugin. --- OpenSim/Framework/ConfigSettings.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs index 275ab69..3ff02f9 100644 --- a/OpenSim/Framework/ConfigSettings.cs +++ b/OpenSim/Framework/ConfigSettings.cs @@ -148,5 +148,13 @@ namespace OpenSim.Framework get { return m_estateConnectionString; } set { m_estateConnectionString = value; } } + + protected bool m_dumpAssetsToFile; + + public bool DumpAssetsToFile + { + get { return m_dumpAssetsToFile; } + set { m_dumpAssetsToFile = value; } + } } } -- cgit v1.1