Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/BizHawk.Client.Common/Api/CoreSystem.cs
2 views
namespace BizHawk.Client.ApiHawk
{
	/// <summary>
	/// Enumeration of each system emulated by BizHawk
	/// </summary>
	public enum CoreSystem : int
	{
		Null = 0,
		TI83,
		AppleII,
		Commodore64,
		Atari2600,
		Atari7800,
		Lynx,
		ColecoVision,
		Intellivision,
		GameBoy,
		DualGameBoy,
		GameBoyAdvance,
		Nintendo64,
		NES,
		SNES,
		PCEngine,
		Genesis,
		Saturn,
		MasterSystem,
		PSP,
		Playstation,
		WonderSwan,
		Libretro
	}
}