Move DisplayType out of IEmulator.cs, that's an annoying place for it to be, instead put it in a new file with Enum.cs which has one line which is silly. silly > annoying

This commit is contained in:
adelikat 2014-12-01 14:27:23 +00:00
parent a283063f5f
commit b08bfc0a2b
3 changed files with 5 additions and 2 deletions

View File

@ -58,6 +58,7 @@
<Compile Include="Database\FirmwareDatabase.cs" />
<Compile Include="Database\GameInfo.cs" />
<Compile Include="EmulationExceptions.cs" />
<Compile Include="Enums.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Interfaces\CoreComms.cs" />
<Compile Include="Interfaces\IController.cs" />

View File

@ -0,0 +1,4 @@
namespace BizHawk.Emulation.Common
{
public enum DisplayType { NTSC, PAL, DENDY }
}

View File

@ -77,6 +77,4 @@ namespace BizHawk.Emulation.Common
/// </summary>
CoreComm CoreComm { get; }
}
public enum DisplayType { NTSC, PAL, DENDY }
}