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

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

Initializes a new instance of the Asset class.
public Asset ( string name, string path, string group, bool force )
name string Asset name.
path string Relative asset path to combine.
group string Asset group.
force bool When true, asset will be forced to combine (see ).
		public Asset(string name, string path, string group, bool force)
		{
			Name = name;
			RelativePath = path;
			Force = force;
			Group = group;
		}
	}
Asset