summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/DesignationInfo.cs
blob: 4e5ce15b683c6e65b2fb76e147347176b20cf642 (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
26
27
28
29
30
using System;
using XUtliPoolLib;

namespace XMainClient
{
	public class DesignationInfo
	{
		public bool isNew;

		public int ID;

		public string desName;

		public string explanation;

		public SeqListRef<uint> attribute;

		public string color;

		public bool completed;

		public string effect;

		public string atlas;

		public int sortID;

		public int leftTime;
	}
}