2015-08-06 00:57:01 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
|
|
|
{
|
2016-03-02 02:10:09 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This service provides the means for a core to specify region information to the client, such NTSC vs PAL
|
|
|
|
|
/// If provided the client will use this to asses FPS and also use it to calculate movie times
|
|
|
|
|
/// </summary>
|
2015-08-06 00:57:01 +00:00
|
|
|
|
public interface IRegionable : IEmulatorService
|
|
|
|
|
{
|
|
|
|
|
DisplayType Region { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|