aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-05-06 22:51:36 +0100
committerJustin Clark-Casey (justincc)2011-05-06 22:51:36 +0100
commitb140aef87a18a5dd388abfc7afeeac7a417b6a83 (patch)
treecab23e6d8eb9f66f526095c264305484827bdaeb /OpenSim
parentremove further mono compiler warnings (diff)
downloadopensim-SC_OLD-b140aef87a18a5dd388abfc7afeeac7a417b6a83.zip
opensim-SC_OLD-b140aef87a18a5dd388abfc7afeeac7a417b6a83.tar.gz
opensim-SC_OLD-b140aef87a18a5dd388abfc7afeeac7a417b6a83.tar.bz2
opensim-SC_OLD-b140aef87a18a5dd388abfc7afeeac7a417b6a83.tar.xz
refactor: simplify ConfigSettings
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/ConfigSettings.cs66
1 files changed, 7 insertions, 59 deletions
diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs
index 9114e00..50328d7 100644
--- a/OpenSim/Framework/ConfigSettings.cs
+++ b/OpenSim/Framework/ConfigSettings.cs
@@ -29,65 +29,13 @@ namespace OpenSim.Framework
29{ 29{
30 public class ConfigSettings 30 public class ConfigSettings
31 { 31 {
32 private string m_physicsEngine; 32 public string PhysicsEngine { get; set; }
33 33 public string MeshEngineName { get; set; }
34 public string PhysicsEngine 34 public bool See_into_region_from_neighbor { get; set; }
35 { 35 public string StorageDll { get; set; }
36 get { return m_physicsEngine; } 36 public string ClientstackDll { get; set; }
37 set { m_physicsEngine = value; } 37 public bool PhysicalPrim { get; set; }
38 } 38 public string LibrariesXMLFile { get; set; }
39 private string m_meshEngineName;
40
41 public string MeshEngineName
42 {
43 get { return m_meshEngineName; }
44 set { m_meshEngineName = value; }
45 }
46
47 private bool m_see_into_region_from_neighbor;
48
49 public bool See_into_region_from_neighbor
50 {
51 get { return m_see_into_region_from_neighbor; }
52 set { m_see_into_region_from_neighbor = value; }
53 }
54
55 private string m_storageDll;
56
57 public string StorageDll
58 {
59 get { return m_storageDll; }
60 set { m_storageDll = value; }
61 }
62
63 private string m_clientstackDll;
64
65 public string ClientstackDll
66 {
67 get { return m_clientstackDll; }
68 set { m_clientstackDll = value; }
69 }
70
71 private bool m_physicalPrim;
72
73 public bool PhysicalPrim
74 {
75 get { return m_physicalPrim; }
76 set { m_physicalPrim = value; }
77 }
78
79 protected string m_librariesXMLFile;
80 public string LibrariesXMLFile
81 {
82 get
83 {
84 return m_librariesXMLFile;
85 }
86 set
87 {
88 m_librariesXMLFile = value;
89 }
90 }
91 39
92 public const uint DefaultAssetServerHttpPort = 8003; 40 public const uint DefaultAssetServerHttpPort = 8003;
93 public const uint DefaultRegionHttpPort = 9000; 41 public const uint DefaultRegionHttpPort = 9000;