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

namespace XMainClient
{
	internal class XPurchaseInfo
	{
		public int curBuyNum = 0;

		public int totalBuyNum = 0;

		public int diamondCost = 0;

		public int dragoncoinCost = 0;

		public int GetCount = 0;

		public int vipLevel = 0;

		public List<int> fatigue;
	}
}