mirror of
https://github.com/ppy/osu-tools.git
synced 2025-06-10 18:10:46 +09:00
Pad output with a newline
This commit is contained in:
parent
37066ef840
commit
d85625128f
2 changed files with 2 additions and 0 deletions
|
@ -58,6 +58,7 @@ namespace PerformanceCalculator.Difficulty
|
||||||
foreach (var kvp in categoryAttribs)
|
foreach (var kvp in categoryAttribs)
|
||||||
command.Console.WriteLine($"{kvp.Key.PadRight(15)}: {kvp.Value}");
|
command.Console.WriteLine($"{kvp.Key.PadRight(15)}: {kvp.Value}");
|
||||||
command.Console.WriteLine($"{"stars".PadRight(15)}: {pp}");
|
command.Console.WriteLine($"{"stars".PadRight(15)}: {pp}");
|
||||||
|
command.Console.WriteLine();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Ruleset getRuleset(int rulesetId)
|
private Ruleset getRuleset(int rulesetId)
|
||||||
|
|
|
@ -50,6 +50,7 @@ namespace PerformanceCalculator.Performance
|
||||||
foreach (var kvp in categoryAttribs)
|
foreach (var kvp in categoryAttribs)
|
||||||
command.Console.WriteLine($"{kvp.Key.PadRight(15)}: {kvp.Value}");
|
command.Console.WriteLine($"{kvp.Key.PadRight(15)}: {kvp.Value}");
|
||||||
command.Console.WriteLine($"{"pp".PadRight(15)}: {pp}");
|
command.Console.WriteLine($"{"pp".PadRight(15)}: {pp}");
|
||||||
|
command.Console.WriteLine();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue