aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AvatarWearingArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/AvatarWearingArgs.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/AvatarWearingArgs.cs b/OpenSim/Framework/AvatarWearingArgs.cs
index e85df1c..dde74f9 100644
--- a/OpenSim/Framework/AvatarWearingArgs.cs
+++ b/OpenSim/Framework/AvatarWearingArgs.cs
@@ -1,6 +1,6 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using libsecondlife; 3using OpenMetaverse;
4 4
5namespace OpenSim.Framework 5namespace OpenSim.Framework
6{ 6{
@@ -21,10 +21,10 @@ namespace OpenSim.Framework
21 21
22 public class Wearable 22 public class Wearable
23 { 23 {
24 public LLUUID ItemID = new LLUUID("00000000-0000-0000-0000-000000000000"); 24 public UUID ItemID = new UUID("00000000-0000-0000-0000-000000000000");
25 public byte Type = 0; 25 public byte Type = 0;
26 26
27 public Wearable(LLUUID itemId, byte type) 27 public Wearable(UUID itemId, byte type)
28 { 28 {
29 ItemID = itemId; 29 ItemID = itemId;
30 Type = type; 30 Type = type;
@@ -33,4 +33,4 @@ namespace OpenSim.Framework
33 33
34 #endregion 34 #endregion
35 } 35 }
36} \ No newline at end of file 36}