BizHawk/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Context.cs

23 lines
578 B
C#
Raw Normal View History

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"
namespace BizHawk.Emulation.DiscSystem.CUE
2015-06-23 18:57:11 +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;
/// <summary>
/// The DiscMountPolicy to be applied to this context
/// </summary>
public DiscMountPolicy DiscMountPolicy;
2015-06-23 18:57:11 +00:00
}
}