2
0

Cell.cs 465 B

1234567891011121314151617181920
  1. using System.IO;
  2. namespace DvdLib.Ifo
  3. {
  4. public class Cell
  5. {
  6. public CellPlaybackInfo PlaybackInfo { get; private set; }
  7. public CellPositionInfo PositionInfo { get; private set; }
  8. internal void ParsePlayback(BinaryReader br)
  9. {
  10. PlaybackInfo = new CellPlaybackInfo(br);
  11. }
  12. internal void ParsePosition(BinaryReader br)
  13. {
  14. PositionInfo = new CellPositionInfo(br);
  15. }
  16. }
  17. }