diff --git a/BizHawk.Emulation.Common/Interfaces/IRegionable.cs b/BizHawk.Emulation.Common/Interfaces/IRegionable.cs new file mode 100644 index 0000000000..6857cb1570 --- /dev/null +++ b/BizHawk.Emulation.Common/Interfaces/IRegionable.cs @@ -0,0 +1,7 @@ +namespace BizHawk.Emulation.Common +{ + public interface IRegionable : IEmulatorService + { + DisplayType Region { get; } + } +}