fixed to work with managed C++ projects.

This commit is contained in:
Arvid Norberg
2003-11-07 01:44:30 +00:00
parent 81289c9354
commit eb90660022
5 changed files with 36 additions and 20 deletions

View File

@@ -118,12 +118,12 @@ bool sleep_and_input(char* c)
void set_cursor(int x, int y)
{
std::cout << "\033[" << y << ";" << x << "H";
// std::cout << "\033[" << y << ";" << x << "H";
}
void clear()
{
std::cout << "\033[2J";
// std::cout << "\033[2J";
}
#endif