diff options
author | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
commit | 7d89e122930be39e84a6d174548fa2d12ac0484a (patch) | |
tree | e5aa5752f988a9aba2a969f49e5e208985eda80c /OpenSim/Framework/OSChatMessage.cs | |
parent | * minor: speculatively try a change to bamboo.build to see if this generates ... (diff) | |
download | opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.zip opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.gz opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.bz2 opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.xz |
* 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.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/OSChatMessage.cs | 14 |
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 | ||
28 | using System; | 28 | using System; |
29 | using libsecondlife; | 29 | using OpenMetaverse; |
30 | 30 | ||
31 | namespace OpenSim.Framework | 31 | namespace 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 | } |