Meilleur affichage de l'entête
This commit is contained in:
parent
28aeb92c65
commit
7ef27412ad
1 changed files with 2 additions and 2 deletions
|
@ -21,8 +21,8 @@ void Evenement::arreterSimulation(Univers * univers) {
|
|||
void Evenement::affichage(Univers * univers, const bool traits) noexcept {
|
||||
// Entête (la taille de la ligne séparatrice s'adapte en fonction du texte à afficher)
|
||||
std::cout <<
|
||||
std::string(37 + std::to_string(univers->ID).size() + std::to_string(univers->m_tour).size(), '-') <<
|
||||
std::endl << "Affichage de l'univers n°" << univers->ID << " au tour n°" << univers->m_tour <<
|
||||
std::string(39 + std::to_string(univers->ID).size() + std::to_string(univers->m_tour).size(), '-') <<
|
||||
std::endl << " Affichage de l'univers n°" << univers->ID << " au tour n°" << univers->m_tour <<
|
||||
"." <<
|
||||
std::endl;
|
||||
|
||||
|
|
Reference in a new issue