From 7d89e122930be39e84a6d174548fa2d12ac0484a Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 6 Sep 2008 07:52:41 +0000 Subject: * This is the fabled LibOMV update with all of the libOMV types from JHurliman * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke. --- OpenSim/Framework/AgentUpdateArgs.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'OpenSim/Framework/AgentUpdateArgs.cs') diff --git a/OpenSim/Framework/AgentUpdateArgs.cs b/OpenSim/Framework/AgentUpdateArgs.cs index 9e83ae1..d9dee13 100644 --- a/OpenSim/Framework/AgentUpdateArgs.cs +++ b/OpenSim/Framework/AgentUpdateArgs.cs @@ -1,21 +1,21 @@ using System; -using libsecondlife; +using OpenMetaverse; namespace OpenSim.Framework { public class AgentUpdateArgs : EventArgs { - public LLUUID AgentID; - public LLQuaternion BodyRotation; - public LLVector3 CameraAtAxis; - public LLVector3 CameraCenter; - public LLVector3 CameraLeftAxis; - public LLVector3 CameraUpAxis; + public UUID AgentID; + public Quaternion BodyRotation; + public Vector3 CameraAtAxis; + public Vector3 CameraCenter; + public Vector3 CameraLeftAxis; + public Vector3 CameraUpAxis; public uint ControlFlags; public float Far; public byte Flags; - public LLQuaternion HeadRotation; - public LLUUID SessionID; + public Quaternion HeadRotation; + public UUID SessionID; public byte State; } -} \ No newline at end of file +} -- cgit v1.1