3 using System.Collections.Generic;
4 using System.ComponentModel;
5 using System.Diagnostics;
6 using SiliconStudio.Core;
8 namespace SiliconStudio.Assets
13 [DataContract(
"Bundle")]
14 [DebuggerDisplay(
"Bundle [{Name}] Selectors[{Selectors.Count}] Dependencies[{Dependencies.Count}]")]
22 Selectors =
new List<AssetSelector>();
23 Dependencies =
new List<string>();
30 public string Name {
get; set; }
36 public List<AssetSelector> Selectors {
get;
private set; }
42 public List<string> Dependencies {
get;
private set; }
51 public string OutputGroup {
get; set; }
Bundle()
Initializes a new instance of the Bundle class.
Description of an asset bundle.