From 76f285a58a13ce0d9ed621154693610582493d5b Mon Sep 17 00:00:00 2001 From: adelikat <adelikat@expion.com> Date: Wed, 5 Aug 2015 20:57:01 -0400 Subject: [PATCH] forgot to add this file, because that's what I do --- BizHawk.Emulation.Common/Interfaces/IRegionable.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 BizHawk.Emulation.Common/Interfaces/IRegionable.cs 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; } + } +}