mirror of
https://github.com/opensim/opensim.git
synced 2026-07-15 12:05:49 +08:00
* 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.
37 lines
801 B
C#
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
|
|
}
|
|
}
|