2015-06-23 18:57:11 +00:00
|
|
|
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"
|
|
|
|
|
2015-07-12 22:45:20 +00:00
|
|
|
namespace BizHawk.Emulation.DiscSystem.CUE
|
2015-06-23 18:57:11 +00:00
|
|
|
{
|
2015-07-12 22:45:20 +00:00
|
|
|
public class CUE_Context
|
2015-06-23 18:57:11 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The CueFileResolver to be used by this instance
|
|
|
|
/// </summary>
|
|
|
|
public CueFileResolver Resolver;
|
2015-07-01 08:55:59 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The DiscMountPolicy to be applied to this context
|
|
|
|
/// </summary>
|
|
|
|
public DiscMountPolicy DiscMountPolicy;
|
2015-06-23 18:57:11 +00:00
|
|
|
}
|
|
|
|
}
|