aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/OSChatMessage.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/OSChatMessage.cs14
1 files changed, 7 insertions, 7 deletions
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 @@
26 */ 26 */
27 27
28using System; 28using System;
29using libsecondlife; 29using OpenMetaverse;
30 30
31namespace OpenSim.Framework 31namespace OpenSim.Framework
32{ 32{
@@ -44,17 +44,17 @@ namespace OpenSim.Framework
44 protected int m_channel; 44 protected int m_channel;
45 protected string m_from; 45 protected string m_from;
46 protected string m_message; 46 protected string m_message;
47 protected LLVector3 m_position; 47 protected Vector3 m_position;
48 48
49 protected IScene m_scene; 49 protected IScene m_scene;
50 protected IClientAPI m_sender; 50 protected IClientAPI m_sender;
51 protected object m_senderObject; 51 protected object m_senderObject;
52 protected ChatTypeEnum m_type; 52 protected ChatTypeEnum m_type;
53 protected LLUUID m_fromID; 53 protected UUID m_fromID;
54 54
55 public OSChatMessage() 55 public OSChatMessage()
56 { 56 {
57 m_position = new LLVector3(); 57 m_position = new Vector3();
58 } 58 }
59 59
60 /// <summary> 60 /// <summary>
@@ -87,7 +87,7 @@ namespace OpenSim.Framework
87 /// <summary> 87 /// <summary>
88 /// The position of the sender at the time of the message broadcast. 88 /// The position of the sender at the time of the message broadcast.
89 /// </summary> 89 /// </summary>
90 public LLVector3 Position 90 public Vector3 Position
91 { 91 {
92 get { return m_position; } 92 get { return m_position; }
93 set { m_position = value; } 93 set { m_position = value; }
@@ -125,7 +125,7 @@ namespace OpenSim.Framework
125 set { m_senderObject = value; } 125 set { m_senderObject = value; }
126 } 126 }
127 127
128 public LLUUID SenderUUID 128 public UUID SenderUUID
129 { 129 {
130 get { return m_fromID; } 130 get { return m_fromID; }
131 set { m_fromID = value; } 131 set { m_fromID = value; }
@@ -142,4 +142,4 @@ namespace OpenSim.Framework
142 142
143 #endregion 143 #endregion
144 } 144 }
145} \ No newline at end of file 145}