/*******************************************
 * graphics.h: Exports functions for drawing
 * the game state.
 */

#ifndef Graphics_Included
#define Graphics_Included

#include "common-types.h"

/* Prints the current state of the game. */
void PrintState(gameT& game);

#endif
