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/Login.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 '')
-rw-r--r-- | OpenSim/Framework/Login.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Framework/Login.cs b/OpenSim/Framework/Login.cs index bc3375d..e754e9f 100644 --- a/OpenSim/Framework/Login.cs +++ b/OpenSim/Framework/Login.cs | |||
@@ -32,15 +32,15 @@ namespace OpenSim.Framework | |||
32 | { | 32 | { |
33 | public class Login | 33 | public class Login |
34 | { | 34 | { |
35 | public string First = "Test"; | ||
36 | public string Last = "User"; | ||
37 | public LLUUID Agent; | 35 | public LLUUID Agent; |
38 | public LLUUID Session; | ||
39 | public LLUUID SecureSession = LLUUID.Zero; | ||
40 | public LLUUID InventoryFolder; | ||
41 | public LLUUID BaseFolder; | 36 | public LLUUID BaseFolder; |
42 | public uint CircuitCode; | ||
43 | public string CapsPath = String.Empty; | 37 | public string CapsPath = String.Empty; |
38 | public uint CircuitCode; | ||
39 | public string First = "Test"; | ||
40 | public LLUUID InventoryFolder; | ||
41 | public string Last = "User"; | ||
42 | public LLUUID SecureSession = LLUUID.Zero; | ||
43 | public LLUUID Session; | ||
44 | public LLVector3 StartPos; | 44 | public LLVector3 StartPos; |
45 | 45 | ||
46 | public Login() | 46 | public Login() |
@@ -48,4 +48,4 @@ namespace OpenSim.Framework | |||
48 | StartPos = new LLVector3(128, 128, 70); | 48 | StartPos = new LLVector3(128, 128, 70); |
49 | } | 49 | } |
50 | } | 50 | } |
51 | } | 51 | } \ No newline at end of file |