BizHawk/BizHawk.Emulation.Common/Enums.cs

29 lines
566 B
C#

namespace BizHawk.Emulation.Common
{
/// <summary>
/// DisplayType, used in IEmulator
/// </summary>
public enum DisplayType { NTSC, PAL, DENDY }
/// <summary>
/// The type/increment of stepping in the Step method of IDebuggable
/// </summary>
public enum StepType { Into, Out, Over }
/// <summary>
/// In the game database, the status of the rom found in the database
/// </summary>
public enum RomStatus
{
GoodDump,
BadDump,
Homebrew,
TranslatedRom,
Hack,
Unknown,
BIOS,
Overdump,
NotInDatabase
}
}