diff options
author | Adam Frisby | 2008-04-29 14:04:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-29 14:04:55 +0000 |
commit | 375163a6fece8b3a57c7555246abe8338223a599 (patch) | |
tree | 163001ca96a4b4d08589e9772f78510677d5d0dc /OpenSim/Framework/AssetConfig.cs | |
parent | Patch from Melanie: 0001087: Crash to bash de-linking objects. Thanks Melanie! (diff) | |
download | opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.zip opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.gz opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.bz2 opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.xz |
* Spring cleaning.
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
Diffstat (limited to 'OpenSim/Framework/AssetConfig.cs')
-rw-r--r-- | OpenSim/Framework/AssetConfig.cs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/OpenSim/Framework/AssetConfig.cs b/OpenSim/Framework/AssetConfig.cs index 85dbaa6..dc73f37 100644 --- a/OpenSim/Framework/AssetConfig.cs +++ b/OpenSim/Framework/AssetConfig.cs | |||
@@ -34,16 +34,13 @@ namespace OpenSim.Framework | |||
34 | /// </summary> | 34 | /// </summary> |
35 | public class AssetConfig | 35 | public class AssetConfig |
36 | { | 36 | { |
37 | public string DefaultStartupMsg = String.Empty; | ||
38 | |||
39 | public string DatabaseProvider = String.Empty; | ||
40 | |||
41 | public string DatabaseConnect = String.Empty; | ||
42 | |||
43 | public const uint DefaultHttpPort = 8003; | 37 | public const uint DefaultHttpPort = 8003; |
44 | public uint HttpPort = DefaultHttpPort; | ||
45 | 38 | ||
46 | private ConfigurationMember configMember; | 39 | private ConfigurationMember configMember; |
40 | public string DatabaseConnect = String.Empty; | ||
41 | public string DatabaseProvider = String.Empty; | ||
42 | public string DefaultStartupMsg = String.Empty; | ||
43 | public uint HttpPort = DefaultHttpPort; | ||
47 | 44 | ||
48 | public AssetConfig(string description, string filename) | 45 | public AssetConfig(string description, string filename) |
49 | { | 46 | { |
@@ -89,4 +86,4 @@ namespace OpenSim.Framework | |||
89 | return true; | 86 | return true; |
90 | } | 87 | } |
91 | } | 88 | } |
92 | } | 89 | } \ No newline at end of file |