BizHawk/BizHawk.Emulation.Common/Interfaces/IRegionable.cs

8 lines
127 B
C#
Raw Normal View History

namespace BizHawk.Emulation.Common
{
public interface IRegionable : IEmulatorService
{
DisplayType Region { get; }
}
}