#ifndef CLEAR_H #define CLEAR_H #include using std::cout; using std::cin; inline void ClearScreen() { cout << "\033[2J\033[1;1H"; } #endif