/*********************************************************** Copyright 2003 Rick Miller - Pulp Free Press This source code accompanies the text C++ For Artists and is provided for instructional purposes only. No warranty concerning the quality of the code is expressed or implied. You are free to use this code in your programs so long as this copyright notice is included in its entirety. **********************************************************/ #ifndef USER_INTERFACE_H #define USER_INTERFACE_H #include using namespace std; class UserInterface { public: UserInterface(); ~UserInterface(); void displayMenu(); int getMenuChoice(); void markFloor(int row, int column); void clearFloor(int row, int column); void displayFloor(); int getRows(); int getColumns(); int getSpaces(); private: bool** floor; int its_rows; int its_columns; int spaces; }; #endif