blob: 2c5f949c8a0a141d67e4972f9676e9d1ceb34054 (
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
|
using System;
using System.Collections.Generic;
namespace XMainClient
{
internal class XPrefixAttributes : IComparable<XPrefixAttributes>
{
public List<XPrefixAttribute> AttributeList
{
get
{
return this.m_AttributeList;
}
}
public uint slotIndex = 0u;
private List<XPrefixAttribute> m_AttributeList = new List<XPrefixAttribute>();
public int CompareTo(XPrefixAttributes other)
{
return this.slotIndex.CompareTo(other.slotIndex);
}
}
}
|