From 8e0037aba8923133bc225eb2085926dad1f005ca Mon Sep 17 00:00:00 2001 From: CreepyCrafter24 <33260128+CreepyCrafter24@users.noreply.github.com> Date: Fri, 22 Nov 2019 19:08:50 +0100 Subject: [PATCH] Added score of next level to sidebar --- testexetrisathlon/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testexetrisathlon/Program.cs b/testexetrisathlon/Program.cs index 1d65459..7d85628 100644 --- a/testexetrisathlon/Program.cs +++ b/testexetrisathlon/Program.cs @@ -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); }