CellPositionInfo.cs 336 B

1234567891011121314151617
  1. using System.IO;
  2. namespace DvdLib.Ifo
  3. {
  4. public class CellPositionInfo
  5. {
  6. public readonly ushort VOBId;
  7. public readonly byte CellId;
  8. internal CellPositionInfo(BinaryReader br)
  9. {
  10. VOBId = br.ReadUInt16();
  11. br.ReadByte();
  12. CellId = br.ReadByte();
  13. }
  14. }
  15. }