 ___  _                                                                       
|   \(_)___ ___ __ _ ___ ___                                                  
| |) | (_-</ -_) _` (_-</ -_)                                            
|___/|_/__/\___\__,_/__/\___|                                                 

Programmed by:
Gregory Karp      (Command parsing, misc. functions)
Myles Williams    (Minimax intelligence)
Markus Iturriaga  (curses interface)

Disease is a board game in which you are an antibody trying to stop
the spread of a disease, played by the computer.  The board is 6x6,
and each player starts with two pieces at opposite corners of the
board.  At each turn, the player places a new piece in any empty
square that is adjacent (orthogonally or diagonally) to another piece
of the same color.  Any opposing pieces adjacent to the move are
"cured" and change to the player's color.  The computer plays by the
same rules.  When the player or the computer is unable to move, the
game is over and the side with the most pieces wins.

Files needed:
disease.h, disease.c, minimax.c, do_command.c, make_move.c, moves_left.c,
and Makefile

Build instructions:
Run make!
