summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ArtifactSuitLevel.cs
blob: ab7cec456506c3d0fb7786c16e02a3c2a85da095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;

namespace XMainClient
{
	internal class ArtifactSuitLevel
	{
		public bool IsDefultSelect = false;

		public uint SuitLevel = 0u;

		public int DefultNum = 0;

		public HashSet<uint> SuitIdList = new HashSet<uint>();
	}
}