#include "othello.h"

/*
 * The 'all_directions' array holds one entry for each of the 8
 * directions.
 */
int    all_directions[] = {
      9,  10, 11,
     -1, /**/  1,
    -11, -10, -9
};


/*
 * The 'directions' array holds one entry for each of the 4
 * principal directions.
 */
int    directions[] = {
    -11, -10, -9, -1
};



char   *progname;

Color   mycolor;
Color   yourcolor;

bool    game_in_progress;
int     level;
bool    quietmode;
