aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ColliderData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/ColliderData.cs14
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
28using System; 28using System;
29using System.Collections; 29using System.Collections;
30using libsecondlife; 30using OpenMetaverse;
31using System.Collections.Generic; 31using System.Collections.Generic;
32 32
33namespace OpenSim.Framework 33namespace 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 }