Beispiel #1
0
 //旋转
 public void Rotate()
 {
     if (m_Players[0].bGameOver || m_Pause)
     {
         return;
     }
     new RotateCommand().excute(m_Players[0]);
     if (Record && bPlayerOperate)
     {
         m_RecordFile.AddRotateCommand(FramesPast);
     }
 }