示例#1
0
 private void Start()
 {
     First.ClearTime();
     Second.ClearTime();
     if (_options.SecondStartsGame)
     {
         _switch = _switch.Swap();
         First.StopMoving();
         Second.StartMoving();
     }
     else
     {
         First.StartMoving();
         Second.StopMoving();
     }
 }