1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-09 09:35:15 +09:00

Pad output with a newline

This commit is contained in:
smoogipoo 2018-05-15 13:17:01 +09:00
parent 37066ef840
commit d85625128f
2 changed files with 2 additions and 0 deletions

View file

@ -58,6 +58,7 @@ namespace PerformanceCalculator.Difficulty
foreach (var kvp in categoryAttribs)
command.Console.WriteLine($"{kvp.Key.PadRight(15)}: {kvp.Value}");
command.Console.WriteLine($"{"stars".PadRight(15)}: {pp}");
command.Console.WriteLine();
}
private Ruleset getRuleset(int rulesetId)

View file

@ -50,6 +50,7 @@ namespace PerformanceCalculator.Performance
foreach (var kvp in categoryAttribs)
command.Console.WriteLine($"{kvp.Key.PadRight(15)}: {kvp.Value}");
command.Console.WriteLine($"{"pp".PadRight(15)}: {pp}");
command.Console.WriteLine();
}
}
}