diff --git a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj
index b4c817eeb3..2ff1378c56 100644
--- a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj
+++ b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj
@@ -58,6 +58,7 @@
+
diff --git a/BizHawk.Emulation.Common/Enums.cs b/BizHawk.Emulation.Common/Enums.cs
new file mode 100644
index 0000000000..c92ead6808
--- /dev/null
+++ b/BizHawk.Emulation.Common/Enums.cs
@@ -0,0 +1,4 @@
+namespace BizHawk.Emulation.Common
+{
+ public enum DisplayType { NTSC, PAL, DENDY }
+}
diff --git a/BizHawk.Emulation.Common/Interfaces/IEmulator.cs b/BizHawk.Emulation.Common/Interfaces/IEmulator.cs
index 70a689a15a..694424fd6d 100644
--- a/BizHawk.Emulation.Common/Interfaces/IEmulator.cs
+++ b/BizHawk.Emulation.Common/Interfaces/IEmulator.cs
@@ -77,6 +77,4 @@ namespace BizHawk.Emulation.Common
///
CoreComm CoreComm { get; }
}
-
- public enum DisplayType { NTSC, PAL, DENDY }
}