using System; using System.Collections.Generic; namespace XMainClient { internal class XPrefixAttributes : IComparable { public List AttributeList { get { return this.m_AttributeList; } } public uint slotIndex = 0u; private List m_AttributeList = new List(); public int CompareTo(XPrefixAttributes other) { return this.slotIndex.CompareTo(other.slotIndex); } } }