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/ChildAgentDataUpdate.cs | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'OpenSim/Framework/ChildAgentDataUpdate.cs') diff --git a/OpenSim/Framework/ChildAgentDataUpdate.cs b/OpenSim/Framework/ChildAgentDataUpdate.cs index 8706f8d..423a208 100644 --- a/OpenSim/Framework/ChildAgentDataUpdate.cs +++ b/OpenSim/Framework/ChildAgentDataUpdate.cs @@ -32,21 +32,21 @@ namespace OpenSim.Framework [Serializable] public class ChildAgentDataUpdate { - public ChildAgentDataUpdate() - { - } - - public sLLVector3 Position; - public ulong regionHandle; - public float drawdistance; - public sLLVector3 cameraPosition; - public sLLVector3 Velocity; - public float AVHeight; + public Guid ActiveGroupID; public Guid AgentID; - public float godlevel; - public byte[] throttles; public bool alwaysrun; - public Guid ActiveGroupID; + public float AVHeight; + public sLLVector3 cameraPosition; + public float drawdistance; + public float godlevel; public uint GroupAccess; + public sLLVector3 Position; + public ulong regionHandle; + public byte[] throttles; + public sLLVector3 Velocity; + + public ChildAgentDataUpdate() + { + } } -} +} \ No newline at end of file -- cgit v1.1