Cell.cs 498 B

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