home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
games
/
volume14
/
scrabble2
/
part06
/
globals.h
next >
Wrap
C/C++ Source or Header
|
1993-01-27
|
672b
|
39 lines
/*
*
* globals.h -- external variables
*
*/
extern char board[16][16];
extern char words[900000];
extern long wptr[90000];
extern long wlen[90000];
extern long dict_size;
extern int dict_changed;
extern char plr_tiles[4][7];
extern int plr_scores[4];
extern int plr_skills[4];
extern int mean_pcts[SKILL_LEVELS];
extern int tiles_left[27];
extern int players;
extern char your[4][7];
extern char you[4][5];
extern int human_player;
extern int b1x, b1y, b2x, b2y;
extern compmove *chead;
extern int game_done;
extern int abort;
extern struct another_word new_words[8];
extern struct let_distrib letters[27];
extern int normal_dist[40];
extern int normal_sum;