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

namespace XUpdater
{
	[Serializable]
	public class XBundleData
	{
		public string Name;

		public string MD5;

		public uint Size;

		public AssetLevel Level = AssetLevel.Memory;
	}
}