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/OSChatMessage.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'OpenSim/Framework/OSChatMessage.cs') diff --git a/OpenSim/Framework/OSChatMessage.cs b/OpenSim/Framework/OSChatMessage.cs index 7f99cd7..fbeb7ba 100644 --- a/OpenSim/Framework/OSChatMessage.cs +++ b/OpenSim/Framework/OSChatMessage.cs @@ -26,7 +26,7 @@ */ using System; -using libsecondlife; +using OpenMetaverse; namespace OpenSim.Framework { @@ -44,17 +44,17 @@ namespace OpenSim.Framework protected int m_channel; protected string m_from; protected string m_message; - protected LLVector3 m_position; + protected Vector3 m_position; protected IScene m_scene; protected IClientAPI m_sender; protected object m_senderObject; protected ChatTypeEnum m_type; - protected LLUUID m_fromID; + protected UUID m_fromID; public OSChatMessage() { - m_position = new LLVector3(); + m_position = new Vector3(); } /// @@ -87,7 +87,7 @@ namespace OpenSim.Framework /// /// The position of the sender at the time of the message broadcast. /// - public LLVector3 Position + public Vector3 Position { get { return m_position; } set { m_position = value; } @@ -125,7 +125,7 @@ namespace OpenSim.Framework set { m_senderObject = value; } } - public LLUUID SenderUUID + public UUID SenderUUID { get { return m_fromID; } set { m_fromID = value; } @@ -142,4 +142,4 @@ namespace OpenSim.Framework #endregion } -} \ No newline at end of file +} -- cgit v1.1