

/*** チップデータ *******/
typedef	struct {
	int		min;
	int		max;
} CHIP;

#define		LEN		8			/* 盤の大きさ */


extern CHIP		x_chip[LEN], y_chip[LEN];			/* チップ */
extern int		cursor_x, cursor_y;					/* カーソル */
extern int		cursor_flag;						/* カーソルの状態 */

/************* End of File *************************************/