コード例 #1
0
 internal ScdAdpcmEntry(ScdFile file, ScdEntryHeader header, int chunksOffset, int dataOffset)
     : base(file, header)
 {
     Decode(chunksOffset, dataOffset);
 }
コード例 #2
0
 internal ScdOggEntry(ScdFile file, ScdEntryHeader header, int dataOffset)
     : base(file, header)
 {
     Decode(dataOffset);
 }
コード例 #3
0
ファイル: ScdEntry.cs プロジェクト: mclark4386/SaintCoinach
 protected ScdEntry(ScdFile file, ScdEntryHeader header) {
     this.File = file;
     this.Header = header;
 }
コード例 #4
0
ファイル: ScdEntry.cs プロジェクト: alphaONE2/saint-coinach
 protected ScdEntry(ScdFile file, ScdEntryHeader header)
 {
     this.File   = file;
     this.Header = header;
 }
コード例 #5
0
 internal ScdOggEntry(ScdFile file, ScdEntryHeader header, int dataOffset)
     : base(file, header)
 {
     Decode(dataOffset);
 }