BizHawk/BizHawk.Client.Common/Api/CoreSystem.cs

44 lines
559 B
C#

namespace BizHawk.Client.ApiHawk
{
/// <summary>
/// Enumeration of each system emulated by BizHawk
/// </summary>
public enum CoreSystem
{
Null = 0,
TI83,
AppleII,
Commodore64,
Atari2600,
Atari7800,
Lynx,
ColecoVision,
Intellivision,
GameBoy,
DualGameBoy,
GameBoyAdvance,
Nintendo64,
NES,
SNES,
PCEngine,
Genesis,
Saturn,
MasterSystem,
PSP,
Playstation,
WonderSwan,
Libretro,
VirtualBoy,
Vectrex,
NeoGeoPocket,
ZXSpectrum,
AmstradCPC,
GGL,
GB3x,
GB4x,
ChannelF,
Odyssey2,
MAME
}
}