diff options
Diffstat (limited to 'OpenSim/Framework/ColliderData.cs')
-rw-r--r-- | OpenSim/Framework/ColliderData.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Framework/ColliderData.cs b/OpenSim/Framework/ColliderData.cs index 075a4e0..4e94d6d 100644 --- a/OpenSim/Framework/ColliderData.cs +++ b/OpenSim/Framework/ColliderData.cs | |||
@@ -27,7 +27,7 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using libsecondlife; | 30 | using OpenMetaverse; |
31 | using System.Collections.Generic; | 31 | using System.Collections.Generic; |
32 | 32 | ||
33 | namespace OpenSim.Framework | 33 | namespace OpenSim.Framework |
@@ -35,12 +35,12 @@ namespace OpenSim.Framework | |||
35 | public class DetectedObject | 35 | public class DetectedObject |
36 | { | 36 | { |
37 | public DetectedObject() { } | 37 | public DetectedObject() { } |
38 | public LLUUID groupUUID = LLUUID.Zero; | 38 | public UUID groupUUID = UUID.Zero; |
39 | public LLUUID ownerUUID = LLUUID.Zero; | 39 | public UUID ownerUUID = UUID.Zero; |
40 | public LLUUID keyUUID = LLUUID.Zero; | 40 | public UUID keyUUID = UUID.Zero; |
41 | public LLVector3 posVector = LLVector3.Zero; | 41 | public Vector3 posVector = Vector3.Zero; |
42 | public LLQuaternion rotQuat = LLQuaternion.Identity; | 42 | public Quaternion rotQuat = Quaternion.Identity; |
43 | public LLVector3 velVector = LLVector3.Zero; | 43 | public Vector3 velVector = Vector3.Zero; |
44 | public string nameStr = String.Empty; | 44 | public string nameStr = String.Empty; |
45 | public int colliderType = 0; | 45 | public int colliderType = 0; |
46 | } | 46 | } |