package TTT;

//  here is where we keep our constants

public interface TicInterface {

//  These are two constants that allow the user to easily change the size
// of the board.  It is really a cool thing

public static final int SIZE = 75;
public static final int BOARDWIDTH = 3;

}
