aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Globals.cs
diff options
context:
space:
mode:
authorMW2007-02-04 11:36:35 +0000
committerMW2007-02-04 11:36:35 +0000
commit8c80d98252f376a815e522c705a3c576dfc16f75 (patch)
tree89e779435d3e9ea2a58b814d81a64e44e4067cc6 /Globals.cs
parentBasic Inventory support and clean up (diff)
downloadopensim-SC_OLD-8c80d98252f376a815e522c705a3c576dfc16f75.zip
opensim-SC_OLD-8c80d98252f376a815e522c705a3c576dfc16f75.tar.gz
opensim-SC_OLD-8c80d98252f376a815e522c705a3c576dfc16f75.tar.bz2
opensim-SC_OLD-8c80d98252f376a815e522c705a3c576dfc16f75.tar.xz
Clean up
Diffstat (limited to 'Globals.cs')
-rw-r--r--Globals.cs20
1 files changed, 9 insertions, 11 deletions
diff --git a/Globals.cs b/Globals.cs
index 44dae82..066a76d 100644
--- a/Globals.cs
+++ b/Globals.cs
@@ -38,8 +38,10 @@ namespace OpenSim
38 { 38 {
39 private static Globals instance = new Globals(); 39 private static Globals instance = new Globals();
40 40
41 public static Globals Instance { 41 public static Globals Instance
42 get { 42 {
43 get
44 {
43 return instance; 45 return instance;
44 } 46 }
45 } 47 }
@@ -48,17 +50,13 @@ namespace OpenSim
48 { 50 {
49 } 51 }
50 52
51 public string RegionName="Test Sandbox\0"; 53 public string RegionName = "Test Sandbox\0";
52 public ulong RegionHandle= 1096213093147648; 54 public ulong RegionHandle = 1096213093147648;
53 public int IpPort=1000; 55 public int IpPort = 1000;
54 56
55 public bool LoginSever=true; 57 public bool LoginSever = true;
56 public ushort LoginServerPort=8080; 58 public ushort LoginServerPort = 8080;
57 59
58 //public string RegionName= "The Other\0";
59 //public ulong RegionHandle= 1095113581519872;
60 //public int IpPort=1020;
61 //public bool LoginSever=false;
62 60
63 } 61 }
64} 62}