/*
 *  CPS108 Spring 1998
 *  Boggle: BoggleConsts.java
 *  Brian Fan & Geoff Berry
 */

package boggle;

/**
 *  BoggleConsts - Various constants used in Boggle
 */

public class BoggleConsts
{
    public final static int MAX_NUM_PLAYERS = 6;

    public final static int BOARD_ROWS = 4;
    public final static int BOARD_COLS = 4;
    public final static int BOARD_SIZE = 16;

    public final static int TIME_WAITING = 10;
    public final static int TIME_COUNTDOWN = 5;
    public final static int TIME_PLAYING = 20;

    public final static String DICTIONARY =
	"/afs/acpub/users/b/t/btf1/data/words";
    /*
     *  This must be "localhost" or the ip number
     *  for acpub machines, i.e. "godzilla.acpub.duke.edu" will
     *  not work, cs machines don't seem to have this problem
     */
    public final static String SERVER_ALIAS =
	"localhost:2222/BoggleGame";
}

