chovy-sign/GameBuilder/Cue/SbiEntry.cs

29 lines
498 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GameBuilder.Cue
{
public class SbiEntry
{
public DiscIndex MSF;
byte[] TOC;
public int Sector
{
get
{
return CueReader.IdxToSector(MSF);
}
}
public SbiEntry(DiscIndex Msf, byte[] Toc)
{
MSF = Msf;
TOC = Toc;
}
}
}