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/GridInstantMessage.cs | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'OpenSim/Framework/GridInstantMessage.cs') diff --git a/OpenSim/Framework/GridInstantMessage.cs b/OpenSim/Framework/GridInstantMessage.cs index 77e5460..08c5f28 100644 --- a/OpenSim/Framework/GridInstantMessage.cs +++ b/OpenSim/Framework/GridInstantMessage.cs @@ -32,16 +32,15 @@ namespace OpenSim.Framework [Serializable] public class GridInstantMessage { + public byte[] binaryBucket; + public byte dialog; public Guid fromAgentID; + public string fromAgentName; public Guid fromAgentSession; - public Guid toAgentID; + public bool fromGroup; public Guid imSessionID; - public uint timestamp; - public string fromAgentName; 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() { - } + } } -} +} \ No newline at end of file -- cgit v1.1