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:
parent
a283063f5f
commit
b08bfc0a2b
|
@ -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" />
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
namespace BizHawk.Emulation.Common
|
||||
{
|
||||
public enum DisplayType { NTSC, PAL, DENDY }
|
||||
}
|
|
@ -77,6 +77,4 @@ namespace BizHawk.Emulation.Common
|
|||
/// </summary>
|
||||
CoreComm CoreComm { get; }
|
||||
}
|
||||
|
||||
public enum DisplayType { NTSC, PAL, DENDY }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue