summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ArtifactSuitData.cs
blob: 5269e95cdb6ce608f47214ac4eb2aa4beec87ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;

namespace XMainClient
{
	internal class ArtifactSuitData : IComparable<ArtifactSuitData>
	{
		public bool Show = false;

		public bool Redpoint = false;

		public uint Level = 0u;

		public ArtifactSuit SuitData;

		public List<ArtifactSingleData> SuitItemList;

		public int CompareTo(ArtifactSuitData other)
		{
			return (int)(other.Level - this.Level);
		}
	}
}