44 lines
692 B
C#
44 lines
692 B
C#
namespace BizHawk.Client.Common
|
|
{
|
|
public enum ELuaEngine
|
|
{
|
|
/// <remarks>Don't change this member's ordinal (don't reorder) without changing <c>BizHawk.Client.EmuHawk.Program.CurrentDomain_AssemblyResolve</c></remarks>
|
|
LuaPlusLuaInterface,
|
|
NLuaPlusKopiLua
|
|
}
|
|
|
|
public enum EDispMethod
|
|
{
|
|
OpenGL, GdiPlus, SlimDX9
|
|
}
|
|
|
|
public enum ESoundOutputMethod
|
|
{
|
|
DirectSound, XAudio2, OpenAL, Dummy
|
|
}
|
|
|
|
public enum EDispManagerAR
|
|
{
|
|
None,
|
|
System,
|
|
|
|
// actually, custom SIZE (fixme on major release)
|
|
Custom,
|
|
CustomRatio
|
|
}
|
|
|
|
public enum SaveStateTypeE
|
|
{
|
|
Binary, Text
|
|
}
|
|
|
|
public enum ClientProfile
|
|
{
|
|
Unknown = 0,
|
|
Casual = 1,
|
|
Longplay = 2,
|
|
Tas = 3,
|
|
N64Tas = 4
|
|
}
|
|
}
|