using System;
using System.Linq;
using System.Text;
using System.IO;
using System.Collections.Generic;
//http://digitalx.org/cue-sheet/index.html "all cue sheet information is a straight 1:1 copy from the cdrwin helpfile"
namespace BizHawk.Emulation.DiscSystem.CUE
{
public class CUE_Context
{
///
/// The CueFileResolver to be used by this instance
///
public CueFileResolver Resolver;
///
/// The DiscMountPolicy to be applied to this context
///
public DiscMountPolicy DiscMountPolicy;
}
}