I'm not sure how i should center this. I tried to use locationRelativeTo null but the gameBoard stays in the top left corner. But i need to center it.
public static void main(String[] args) {
JFrame game = new JFrame();
game.setTitle("Game2048");
game.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
game.setSize(420, 700);
game.setResizable(false);
game.add(new Game2048());
// help here >>>> game.setLocation();
game.setVisible(true);
}