Files
opensim/OpenSim/Framework/AvatarWearingArgs.cs
Teravus Ovares 7d89e12293 * This is the fabled LibOMV update with all of the libOMV types from JHurliman
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point.  Regular people should let the dust settle.
* This has been tested to work with most basic functions. However..   make sure you back up 'everything' before using this.  It's that big!  
* Essentially we're back at square 1 in the testing phase..  so lets identify things that broke.
2008-09-06 07:52:41 +00:00

37 lines
801 B
C#

using System;
using System.Collections.Generic;
using OpenMetaverse;
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 UUID ItemID = new UUID("00000000-0000-0000-0000-000000000000");
public byte Type = 0;
public Wearable(UUID itemId, byte type)
{
ItemID = itemId;
Type = type;
}
}
#endregion
}
}