Added score of next level to sidebar

This commit is contained in:
CreepyCrafter24 2019-11-22 19:08:50 +01:00
parent 4578fc3ddb
commit 8e0037aba8
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ namespace testexetrisathlon
SetCursorPosition(25, 0);
WriteLine("Level " + level);
SetCursorPosition(25, 1);
WriteLine("Score " + score);
WriteLine("Score " + score + "/" + (Math.Pow(level, 2) * 100).ToString());
SetCursorPosition(25, 2);
WriteLine("LinesCleared " + linesCleared);
SetCursorPosition(25, 4);
@ -361,7 +361,7 @@ namespace testexetrisathlon
SetCursorPosition(25, 0);
WriteLine("Level " + level);
SetCursorPosition(25, 1);
WriteLine("Score " + score);
WriteLine("Score " + score + "/" + (Math.Pow(level, 2) * 100).ToString());
SetCursorPosition(25, 2);
WriteLine("LinesCleared " + linesCleared);
}