コード例 #1
0
 public SpeccyBasicProgram()
 {
     currentFont = FontA;
     AutoClear   = false;
     FPS         = 60;
     beeper      = new SpeccyBeeper();
     ayPlayer    = new SpeccyMIDI();
 }
コード例 #2
0
 protected void SwapFont()
 {
     if (currentFont == FontA)
     {
         currentFont = FontB;
     }
     else
     {
         currentFont = FontA;
     }
 }