From 5dd4e31011a652a86ae1bb11cfb2c64218f2009e Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 14 Nov 2016 19:49:29 +0900 Subject: [PATCH] Move DrawableHitObject. --- osu.Desktop.VisualTests/Tests/TestCaseHitObjects.cs | 1 + osu.Game.Mode.Osu/Objects/Drawables/DrawableHitCircle.cs | 1 + osu.Game.Mode.Osu/UI/OsuHitRenderer.cs | 1 + osu.Game.Modes.Catch/UI/CatchHitRenderer.cs | 1 + osu.Game.Modes.Mania/UI/ManiaHitRenderer.cs | 1 + osu.Game.Modes.Taiko/UI/TaikoHitRenderer.cs | 1 + osu.Game/Modes/Objects/{ => Drawables}/DrawableHitObject.cs | 2 +- osu.Game/Modes/UI/HitRenderer.cs | 1 + osu.Game/Screens/Play/Player.cs | 1 + osu.Game/osu.Game.csproj | 2 +- 10 files changed, 10 insertions(+), 2 deletions(-) rename osu.Game/Modes/Objects/{ => Drawables}/DrawableHitObject.cs (94%) diff --git a/osu.Desktop.VisualTests/Tests/TestCaseHitObjects.cs b/osu.Desktop.VisualTests/Tests/TestCaseHitObjects.cs index 904123dd50..1c6c61d51e 100644 --- a/osu.Desktop.VisualTests/Tests/TestCaseHitObjects.cs +++ b/osu.Desktop.VisualTests/Tests/TestCaseHitObjects.cs @@ -8,6 +8,7 @@ using osu.Framework.Timing; using OpenTK; using osu.Framework.Allocation; using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.Osu.Objects; using osu.Game.Modes.Osu.Objects.Drawables; diff --git a/osu.Game.Mode.Osu/Objects/Drawables/DrawableHitCircle.cs b/osu.Game.Mode.Osu/Objects/Drawables/DrawableHitCircle.cs index ea65073bdc..62481b5511 100644 --- a/osu.Game.Mode.Osu/Objects/Drawables/DrawableHitCircle.cs +++ b/osu.Game.Mode.Osu/Objects/Drawables/DrawableHitCircle.cs @@ -12,6 +12,7 @@ using osu.Framework.Graphics.Transformations; using osu.Framework.Input; using osu.Framework.MathUtils; using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; using OpenTK; namespace osu.Game.Modes.Osu.Objects.Drawables diff --git a/osu.Game.Mode.Osu/UI/OsuHitRenderer.cs b/osu.Game.Mode.Osu/UI/OsuHitRenderer.cs index 94f4ba2fd4..218dc39ba6 100644 --- a/osu.Game.Mode.Osu/UI/OsuHitRenderer.cs +++ b/osu.Game.Mode.Osu/UI/OsuHitRenderer.cs @@ -2,6 +2,7 @@ //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.UI; using Circle = osu.Game.Modes.Osu.Objects.Circle; using DrawableCircle = osu.Game.Modes.Osu.Objects.Drawables.DrawableCircle; diff --git a/osu.Game.Modes.Catch/UI/CatchHitRenderer.cs b/osu.Game.Modes.Catch/UI/CatchHitRenderer.cs index 4d58ce6278..9e1d2af571 100644 --- a/osu.Game.Modes.Catch/UI/CatchHitRenderer.cs +++ b/osu.Game.Modes.Catch/UI/CatchHitRenderer.cs @@ -3,6 +3,7 @@ using osu.Game.Modes.Catch.Objects; using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.UI; namespace osu.Game.Modes.Catch.UI diff --git a/osu.Game.Modes.Mania/UI/ManiaHitRenderer.cs b/osu.Game.Modes.Mania/UI/ManiaHitRenderer.cs index 2e4514cb85..a13e829e07 100644 --- a/osu.Game.Modes.Mania/UI/ManiaHitRenderer.cs +++ b/osu.Game.Modes.Mania/UI/ManiaHitRenderer.cs @@ -3,6 +3,7 @@ using osu.Game.Modes.Mania.Objects; using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.UI; namespace osu.Game.Modes.Mania.UI diff --git a/osu.Game.Modes.Taiko/UI/TaikoHitRenderer.cs b/osu.Game.Modes.Taiko/UI/TaikoHitRenderer.cs index 28180b5d24..cf72cfbc47 100644 --- a/osu.Game.Modes.Taiko/UI/TaikoHitRenderer.cs +++ b/osu.Game.Modes.Taiko/UI/TaikoHitRenderer.cs @@ -2,6 +2,7 @@ //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.Taiko.Objects; using osu.Game.Modes.UI; diff --git a/osu.Game/Modes/Objects/DrawableHitObject.cs b/osu.Game/Modes/Objects/Drawables/DrawableHitObject.cs similarity index 94% rename from osu.Game/Modes/Objects/DrawableHitObject.cs rename to osu.Game/Modes/Objects/Drawables/DrawableHitObject.cs index 8af7186d63..d5674d8314 100644 --- a/osu.Game/Modes/Objects/DrawableHitObject.cs +++ b/osu.Game/Modes/Objects/Drawables/DrawableHitObject.cs @@ -5,7 +5,7 @@ using System; using osu.Framework; using osu.Framework.Graphics.Containers; -namespace osu.Game.Modes.Objects +namespace osu.Game.Modes.Objects.Drawables { public abstract class DrawableHitObject : Container, IStateful { diff --git a/osu.Game/Modes/UI/HitRenderer.cs b/osu.Game/Modes/UI/HitRenderer.cs index 475d2ec897..5f4b0b9b02 100644 --- a/osu.Game/Modes/UI/HitRenderer.cs +++ b/osu.Game/Modes/UI/HitRenderer.cs @@ -8,6 +8,7 @@ using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; namespace osu.Game.Modes.UI { diff --git a/osu.Game/Screens/Play/Player.cs b/osu.Game/Screens/Play/Player.cs index 926fd77222..8bc1a3d151 100644 --- a/osu.Game/Screens/Play/Player.cs +++ b/osu.Game/Screens/Play/Player.cs @@ -12,6 +12,7 @@ using osu.Framework.Timing; using osu.Game.Database; using osu.Game.Modes; using osu.Game.Modes.Objects; +using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.UI; using osu.Game.Screens.Backgrounds; using OpenTK.Input; diff --git a/osu.Game/osu.Game.csproj b/osu.Game/osu.Game.csproj index 9e8a3a0141..ede412f27c 100644 --- a/osu.Game/osu.Game.csproj +++ b/osu.Game/osu.Game.csproj @@ -71,7 +71,7 @@ - +