Beispiel #1
0
 //右移
 public void MoveRight()
 {
     if (m_Players[0].bGameOver || m_Pause)
     {
         return;
     }
     new MoveRightCommand().excute(m_Players[0]);
     if (Record && bPlayerOperate)
     {
         m_RecordFile.AddMoveRightCommand(FramesPast);
     }
 }