I got 1 when i pass button and if i pass the second timeis still 1 not is ++
int click = 0;
public ButtonHandler(int x, int y, MineGrid g)
{
row = x;
col = y;
grid = g;
}
public void actionPerformed(ActionEvent event)
else
{
click ++;
JButton button = (JButton)event.getSource();
// click ++;
button.setText(String.valueOf(grid.getInfoAt(row, col)));
// click ++;
System.out.println (click);
MineSweeper2.checkforwinner(click);
}