blob: e85df1c384ef7a2d2a8e366a172bf6354806f47f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using System;
using System.Collections.Generic;
using libsecondlife;
namespace OpenSim.Framework
{
public class AvatarWearingArgs : EventArgs
{
private List<Wearable> m_nowWearing = new List<Wearable>();
/// <summary>
///
/// </summary>
public List<Wearable> NowWearing
{
get { return m_nowWearing; }
set { m_nowWearing = value; }
}
#region Nested type: Wearable
public class Wearable
{
public LLUUID ItemID = new LLUUID("00000000-0000-0000-0000-000000000000");
public byte Type = 0;
public Wearable(LLUUID itemId, byte type)
{
ItemID = itemId;
Type = type;
}
}
#endregion
}
}
|