public SoundBankFile(SoundBank parent, EndianReader reader)
 {
     ParentBank = parent;
     ID         = reader.ReadUInt32();
     Offset     = reader.ReadInt32();
     Size       = reader.ReadInt32();
 }
 public SoundBankFile(SoundBank parent, EndianReader reader)
 {
     ParentBank = parent;
     ID = reader.ReadUInt32();
     Offset = reader.ReadInt32();
     Size = reader.ReadInt32();
 }
 public SoundBankFile(SoundBank parent, uint id, int offset, int size)
 {
     ParentBank = parent;
     ID         = id;
     Offset     = offset;
     Size       = size;
 }
 public SoundBankFile(SoundBank parent, uint id, int offset, int size)
 {
     ParentBank = parent;
     ID = id;
     Offset = offset;
     Size = size;
 }