Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/BizHawk.Emulation.Common/Enums.cs
2 views
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
	}
}