diff options
author | lbsa71 | 2009-04-16 17:57:17 +0000 |
---|---|---|
committer | lbsa71 | 2009-04-16 17:57:17 +0000 |
commit | ec219f025afd1ecf1997d358f10a74a670d65e86 (patch) | |
tree | b3a3ea2736d6345377cf6c604522b03115554bb2 /OpenSim/Framework/ConfigBase.cs | |
parent | trying to fix exception in Random.Next() probably caused through sharing of (diff) | |
download | opensim-SC_OLD-ec219f025afd1ecf1997d358f10a74a670d65e86.zip opensim-SC_OLD-ec219f025afd1ecf1997d358f10a74a670d65e86.tar.gz opensim-SC_OLD-ec219f025afd1ecf1997d358f10a74a670d65e86.tar.bz2 opensim-SC_OLD-ec219f025afd1ecf1997d358f10a74a670d65e86.tar.xz |
* Started arduous config refactoring task with babystep introduction of common baseclass for backend configs.
Diffstat (limited to 'OpenSim/Framework/ConfigBase.cs')
-rw-r--r-- | OpenSim/Framework/ConfigBase.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Framework/ConfigBase.cs b/OpenSim/Framework/ConfigBase.cs new file mode 100644 index 0000000..5479f2f --- /dev/null +++ b/OpenSim/Framework/ConfigBase.cs | |||
@@ -0,0 +1,10 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework | ||
6 | { | ||
7 | public abstract class ConfigBase | ||
8 | { | ||
9 | } | ||
10 | } | ||