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

namespace XUpdater
{
	[Serializable]
	public class XResPackage
	{
		public string location;

		public string type;

		public string bundle;

		public ResourceType rtype = ResourceType.Assets;
	}
}