31 lines
791 B
C#
31 lines
791 B
C#
namespace BizHawk
|
|
{
|
|
public class CoreInputComm
|
|
{
|
|
public int NES_BackdropColor;
|
|
public bool NES_UnlimitedSprites;
|
|
public bool NES_ShowBG, NES_ShowOBJ;
|
|
public bool PCE_ShowBG1, PCE_ShowOBJ1, PCE_ShowBG2, PCE_ShowOBJ2;
|
|
public bool SMS_ShowBG, SMS_ShowOBJ;
|
|
|
|
public bool SNES_ShowBG1_0, SNES_ShowBG2_0, SNES_ShowBG3_0, SNES_ShowBG4_0;
|
|
public bool SNES_ShowBG1_1, SNES_ShowBG2_1, SNES_ShowBG3_1, SNES_ShowBG4_1;
|
|
public bool SNES_ShowOBJ_0, SNES_ShowOBJ_1, SNES_ShowOBJ_2, SNES_ShowOBJ_3;
|
|
}
|
|
|
|
public class CoreOutputComm
|
|
{
|
|
public double VsyncRate
|
|
{
|
|
get
|
|
{
|
|
return VsyncNum / (double)VsyncDen;
|
|
}
|
|
}
|
|
public int VsyncNum = 60;
|
|
public int VsyncDen = 1;
|
|
public string RomStatusAnnotation;
|
|
public string RomStatusDetails;
|
|
}
|
|
}
|