package tictactoe;

public interface UserInterface {
    public void setId(char id);
    public void boardChanged(char[][] board);    // the board needs updating
    public void makeAMove();                     // your turn to move
    public void inform(String s);                // give information to the user

}

