summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/AsyncXNGUILoad.cs
blob: be7b4abfbae6fa74d206d657a74f49518850a454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace XUtliPoolLib
{
	public sealed class AsyncXNGUILoad
	{
		public bool IsDone = false;

		public bool HasError = false;

		public float Ratio = 0f;

		public string abFilePath = string.Empty;
	}
}