Modify show() method presentation

This commit is contained in:
manzerbredes 2015-05-01 10:39:26 +02:00
parent a7e0de4bb6
commit 6392288967

View file

@ -42,7 +42,9 @@ void Grid::show()
std::cout << " " << m_table[i][j]->description() << " |";
}
std::cout << std::endl;
std::cout << std::endl;
if (i != m_size -1)
std::cout << std::endl;
}
std::cout << "_________________" << std::endl;
}