NewColor() public method

public NewColor ( ) : void
return void
Example #1
0
 //Anytyime a move is made, this is called
 public void DoMove()
 {
     //Update count and color chooser
     moves.DoMove();
     if (!tutorialEnabled)
     {
         colorSelector.NewColor();
     }
     else
     {
         colorSelector.NewColor(0);
     }
 }