aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AvatarWearingArgs.cs
diff options
context:
space:
mode:
authorJeff Ames2008-07-11 09:18:17 +0000
committerJeff Ames2008-07-11 09:18:17 +0000
commit3b9cf652349327f7b255a850d5b966a9e3b9437e (patch)
tree3d5b58711b46616716c7e5079db3dc77fcf0d45e /OpenSim/Framework/AvatarWearingArgs.cs
parentThanks Mike for another LSL compiler patch which fixes a bug where 'vector v=... (diff)
downloadopensim-SC_OLD-3b9cf652349327f7b255a850d5b966a9e3b9437e.zip
opensim-SC_OLD-3b9cf652349327f7b255a850d5b966a9e3b9437e.tar.gz
opensim-SC_OLD-3b9cf652349327f7b255a850d5b966a9e3b9437e.tar.bz2
opensim-SC_OLD-3b9cf652349327f7b255a850d5b966a9e3b9437e.tar.xz
Update svn properties.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/AvatarWearingArgs.cs70
1 files changed, 35 insertions, 35 deletions
diff --git a/OpenSim/Framework/AvatarWearingArgs.cs b/OpenSim/Framework/AvatarWearingArgs.cs
index 2e64601..e85df1c 100644
--- a/OpenSim/Framework/AvatarWearingArgs.cs
+++ b/OpenSim/Framework/AvatarWearingArgs.cs
@@ -1,36 +1,36 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using libsecondlife; 3using libsecondlife;
4 4
5namespace OpenSim.Framework 5namespace OpenSim.Framework
6{ 6{
7 public class AvatarWearingArgs : EventArgs 7 public class AvatarWearingArgs : EventArgs
8 { 8 {
9 private List<Wearable> m_nowWearing = new List<Wearable>(); 9 private List<Wearable> m_nowWearing = new List<Wearable>();
10 10
11 /// <summary> 11 /// <summary>
12 /// 12 ///
13 /// </summary> 13 /// </summary>
14 public List<Wearable> NowWearing 14 public List<Wearable> NowWearing
15 { 15 {
16 get { return m_nowWearing; } 16 get { return m_nowWearing; }
17 set { m_nowWearing = value; } 17 set { m_nowWearing = value; }
18 } 18 }
19 19
20 #region Nested type: Wearable 20 #region Nested type: Wearable
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 LLUUID ItemID = new LLUUID("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(LLUUID itemId, byte type)
28 { 28 {
29 ItemID = itemId; 29 ItemID = itemId;
30 Type = type; 30 Type = type;
31 } 31 }
32 } 32 }
33 33
34 #endregion 34 #endregion
35 } 35 }
36} \ No newline at end of file 36} \ No newline at end of file