Ejemplo n.º 1
0
 public Unknown(HIRCObjectType type, int length) : base(type, (uint)length)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a new Music Object with the specified type and data length.
 /// </summary>
 /// <param name="type">The type of the Music Object.</param>
 /// <param name="length">The length of the data excluding type ID and data length.</param>
 public MusicObject(HIRCObjectType type, uint length) : base(type, length)
 {
     // Prevent null relationships
     _children = new List <MusicObject>();
 }
Ejemplo n.º 3
0
 protected HIRCObjectBase(HIRCObjectType type, uint length)
 {
     Type   = type;
     Length = length;
 }