CellPositionInfo.cs 368 B

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