jellyfin/DvdLib/Ifo/CellPositionInfo.cs
2020-04-21 10:33:41 +02:00

20 lines
368 B
C#

#pragma warning disable CS1591
using System.IO;
namespace DvdLib.Ifo
{
public class CellPositionInfo
{
public readonly ushort VOBId;
public readonly byte CellId;
internal CellPositionInfo(BinaryReader br)
{
VOBId = br.ReadUInt16();
br.ReadByte();
CellId = br.ReadByte();
}
}
}