summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/MoneyTreeData.cs
blob: 471ef9ee655287916dee36fe7bada24f38b9c90a (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.UI
{
	internal class MoneyTreeData
	{
		public uint free_count = 0u;

		public uint free_all_count = 0u;

		public uint count = 0u;

		public uint all_count = 0u;

		public uint left_time = 0u;

		public float req_time = 0f;

		public List<uint> result = new List<uint>();
	}
}