* 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.
This commit is contained in:
Adam Frisby
2008-04-29 14:04:55 +00:00
parent 9907c0fd10
commit 375163a6fe
64 changed files with 1283 additions and 1475 deletions

View File

@@ -32,16 +32,15 @@ namespace OpenSim.Framework
[Serializable]
public class GridInstantMessage
{
public byte[] binaryBucket;
public byte dialog;
public Guid fromAgentID;
public Guid fromAgentSession;
public Guid toAgentID;
public Guid imSessionID;
public uint timestamp;
public string fromAgentName;
public Guid fromAgentSession;
public bool fromGroup;
public Guid imSessionID;
public string message;
public byte dialog;
public bool fromGroup;
public byte offline;
public uint ParentEstateID;
@@ -49,11 +48,11 @@ namespace OpenSim.Framework
public sLLVector3 Position;
public Guid RegionID;
public byte[] binaryBucket;
public uint timestamp;
public Guid toAgentID;
public GridInstantMessage()
{
}
}
}
}
}