AssetPackager.Assets.AssetList.AssetList C# (CSharp) Méthode

AssetList() public méthode

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 ).
Résultat System
		public AssetList(string name, bool force, string listType)
		{
			Name = name;
			Force = force;
			ListType = AssetListTypeHelper.GetTypeByName(listType);
			Assets = new List<Asset>();
		}