//------------------------------------------------------------------- // File :board.h // Author :Alicia Thorsen // Course :CS1129 // // Prototypes for functions which handle the Boggle board. //------------------------------------------------------------------- #ifndef BOARD_H #define BOARD_H //Dimension of square Boggle board const int SIZE = 4; //Generate a random Boggle board void getBoard(char [][SIZE]); //Display Boggle board void displayBoard(char [][SIZE]); //Show Boggle ASCII art void showLogo(); //Show game instructions void showInstructions(); #endif