-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The AI decideAction function has been written but it is currently unt…
…ested, as runGame has not beed modified to make use of the new program. To make this function work the listLength prototype has been moved into Game.h to be used by the AI, a getDeck function was added to give the playerHand list to the AI function and the README has been changed to include the ai.c file in the compilation line.
- Loading branch information
Showing
5 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
An implementation of the go fish card game in C. | ||
|
||
Compile using: | ||
gcc -Wall -Werror -O -o goFish Game.c runGame.c | ||
It is recommended to compile this program using the following line: | ||
gcc -Wall -Werror -O -o goFish Game.c runGame.c ai.c | ||
|
||
Created by Adam Douglas and James Wardman. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters