From 375163a6fece8b3a57c7555246abe8338223a599 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Tue, 29 Apr 2008 14:04:55 +0000 Subject: * 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. --- OpenSim/Framework/Login.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'OpenSim/Framework/Login.cs') 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 { public class Login { - public string First = "Test"; - public string Last = "User"; public LLUUID Agent; - public LLUUID Session; - public LLUUID SecureSession = LLUUID.Zero; - public LLUUID InventoryFolder; public LLUUID BaseFolder; - public uint CircuitCode; public string CapsPath = String.Empty; + public uint CircuitCode; + public string First = "Test"; + public LLUUID InventoryFolder; + public string Last = "User"; + public LLUUID SecureSession = LLUUID.Zero; + public LLUUID Session; public LLVector3 StartPos; public Login() @@ -48,4 +48,4 @@ namespace OpenSim.Framework StartPos = new LLVector3(128, 128, 70); } } -} +} \ No newline at end of file -- cgit v1.1