AssetPackager.Assets.AssetList.AssetList C# (CSharp) Метод

AssetList() публичный Метод

Initializes a new instance of the AssetList class.
public AssetList ( string name, bool force, string listType ) : System
name string Set name.
force bool When true all URLs will be forced to combine (see ).
listType string Short name of the asset list type (see ).
Результат System
		public AssetList(string name, bool force, string listType)
		{
			Name = name;
			Force = force;
			ListType = AssetListTypeHelper.GetTypeByName(listType);
			Assets = new List<Asset>();
		}