private void flipToken(int x, int y) {
   board.flipToken(x, y);
   if (board.getToken(x, y) == Boolean.TRUE) {
     sk.addPointBlack();
     sk.remPointWhite();
   } else {
     sk.remPointBlack();
     sk.addPointWhite();
   }
 }