Skip to content

Commit

Permalink
code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
minisbett committed Oct 19, 2024
1 parent 5e4e495 commit e11e23a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions PerformanceCalculator/Simulate/OsuSimulateCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using osu.Game.Beatmaps;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
using osu.Game.Rulesets.Osu.Mods;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Scoring;

Expand All @@ -36,11 +35,11 @@ public class OsuSimulateCommand : SimulateCommand

[UsedImplicitly]
[Option(Template = "-L|--large-tick-misses <misses>", Description = "Number of large tick misses. Defaults to 0.")]
private int largeTickMisses { get; } = 0;
private int largeTickMisses { get; }

[UsedImplicitly]
[Option(Template = "-S|--slider-tail-misses <misses>", Description = "Number of slider tail misses. Defaults to 0.")]
private int sliderTailMisses { get; } = 0;
private int sliderTailMisses { get; }

public override Ruleset Ruleset => new OsuRuleset();

Expand Down

0 comments on commit e11e23a

Please sign in to comment.