From 0ccdfeea57f3a983e1735ce1d3c0aca7b7959da2 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sat, 24 Apr 2021 14:33:56 +0900 Subject: [PATCH] Fix code quality issues --- osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs b/osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs index e4c41bed6d..63203dd57c 100644 --- a/osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs +++ b/osu.Game.Rulesets.Catch/Mods/CatchModFloatingFruits.cs @@ -1,9 +1,12 @@ -using osu.Framework.Graphics; +// Copyright (c) ppy Pty Ltd . 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 { @@ -19,7 +22,8 @@ namespace osu.Game.Rulesets.Catch.Mods { drawableRuleset.Anchor = Anchor.Centre; drawableRuleset.Origin = Anchor.Centre; - drawableRuleset.Scale = new osuTK.Vector2(1, -1); + + drawableRuleset.Scale = new Vector2(1, -1); } } }