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

namespace XMainClient
{
	public class TargetItemInfo
	{
		public List<GoalAwards.RowData> subItems = new List<GoalAwards.RowData>();

		public uint goalAwardsID;

		public uint doneIndex;

		public uint gottenAwardsIndex;

		public uint minLevel;

		public double totalvalue;
	}
}