package tictactoe;

public interface GameInterface {
    public void move(int row, int col, UserInterface user);  // make a move
    public void joinGame(UserInterface user); // return X or O
  }

