AvatarWearingArgs.cs 806 B

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