示例#1
0
 public void SwitchMove()
 {
     doodoo.Move();
     moveCounter++;
     if (moveCounter == 3)
     {
         moveCounter = 0;
         turnCounter = true;
     }
 }
示例#2
0
 public void SwitchMove()
 {
     //Switches control from one player to another after turn ends
     doodoo.Move();
     moveCounter++;
     if (moveCounter == 3)
     {
         moveCounter = 0;
         turnCounter = true;
     }
 }