#ifndef DISPLAY_H #define DISPLAY_H #include "strategy.h" // Prototypes of functions implemented in display.h: void clear_message( ); void draw_state(const state& s); void finish(const state& s); void get_user_move(move& m); void initialize_display( ); void write(const char message[]); #endif