//Pramesh Shah
//EECS 370
//EECS ID: pshah
//Assignment 7: readme file

				Scrabble

The game that I designed is based on the scrabble game.  The players tries

to build English words on a board. The board itself is tow dimensional. In

order to place a word on the board, the player has to select one word at a 

time and place it on the board.  Initially the player has to start at the 

initial start position, which is specified on the board.  For this project 

I used several source files, making easier to follow the program. The

main source file of the project is ScrabbleBoard.java.  In this file I 

create the playing board, and check for valid words, and also link all the 

files by creating an instance of the file that I want to link. The user 

always goes first at the begining game.  But if the player wishes to pass 

his turn he can do that by pressing "change" button.  Once the player is 

done palcing the words on the board, the player press the "play" button.  

After this player is assinged points depending how long his word was. Each 

letter is assingned 2 points.  After the player's turn, the computer takes

its turn and places a word on the board. If any time during the game if

the palayer wants to quit, he or she can press the "quit" button.  The

game terminates after 25 moves.  

This final project compared to the original plans has not changed

much.  The game is played against the computer just like it was planned 

in the original plan.  The object of the game is to make words from the 

7 tiles that are assingned to you. After each move the player is assinged

new tiles to play with. The goal is to make the biggest word possible from

the given tiles, so the player can get the most points.

