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>();
		}