Skip to content

Commit

Permalink
Fix code quality issues
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Apr 24, 2021
1 parent 86a361a commit 0ccdfee
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
using osu.Framework.Graphics;
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play;
using osuTK;

namespace osu.Game.Rulesets.Catch.Mods
{
Expand All @@ -19,7 +22,8 @@ public void ApplyToDrawableRuleset(DrawableRuleset<CatchHitObject> drawableRules
{
drawableRuleset.Anchor = Anchor.Centre;
drawableRuleset.Origin = Anchor.Centre;
drawableRuleset.Scale = new osuTK.Vector2(1, -1);

drawableRuleset.Scale = new Vector2(1, -1);
}
}
}

0 comments on commit 0ccdfee

Please sign in to comment.