Code:
public class GameData {

    public int[][] tictactoe_board;
    

    // Constructor
    public GameData(int[][] board) {
	tictactoe_board = board;
    } 
}
is there any way i can return the tictactoe_board variable in another class? like

int[][] blah = GameData.tictactoe_board;