blob: d9324a28b72d5907fb178598f72923f00a816f98 (
plain) (
tree)
|
|
/*
* =====================================================================================
*
* Filename: screen.hpp
*
* Description: NCurses screen
*
* Version: 1.0
* Created: 01/07/2023 09:52:54 PM
* Revision: none
* Compiler: gcc
*
* Author: Cara Salter (muirrum), cara@devcara.com
* Organization:
*
* =====================================================================================
*/
class Screen {
int _height, _width;
public:
// Initialize NCurses
Screen();
// Clear NCurses
~Screen();
// Print a message on the screen
void add(const char* message);
// Get the screen height
int height();
// Get the screen width
int width();
};
|