From b83db185513cc4066dd387993078f2af00ec8861 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 23 Mar 2017 15:11:22 +0900 Subject: [PATCH] HitExplosion -> DrawableOsuJudgementInfo. --- .../{HitExplosion.cs => DrawableOsuJudgementInfo.cs} | 4 ++-- osu.Game.Modes.Osu/UI/OsuPlayfield.cs | 2 +- osu.Game.Modes.Osu/osu.Game.Modes.Osu.csproj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename osu.Game.Modes.Osu/Objects/Drawables/{HitExplosion.cs => DrawableOsuJudgementInfo.cs} (78%) diff --git a/osu.Game.Modes.Osu/Objects/Drawables/HitExplosion.cs b/osu.Game.Modes.Osu/Objects/Drawables/DrawableOsuJudgementInfo.cs similarity index 78% rename from osu.Game.Modes.Osu/Objects/Drawables/HitExplosion.cs rename to osu.Game.Modes.Osu/Objects/Drawables/DrawableOsuJudgementInfo.cs index 83f19bb96e..15832bcb75 100644 --- a/osu.Game.Modes.Osu/Objects/Drawables/HitExplosion.cs +++ b/osu.Game.Modes.Osu/Objects/Drawables/DrawableOsuJudgementInfo.cs @@ -9,9 +9,9 @@ using osu.Game.Modes.Judgements; namespace osu.Game.Modes.Osu.Objects.Drawables { - public class HitExplosion : DrawableJudgementInfo + public class DrawableOsuJudgementInfo : DrawableJudgementInfo { - public HitExplosion(OsuJudgementInfo judgement) : base(judgement) + public DrawableOsuJudgementInfo(OsuJudgementInfo judgement) : base(judgement) { } diff --git a/osu.Game.Modes.Osu/UI/OsuPlayfield.cs b/osu.Game.Modes.Osu/UI/OsuPlayfield.cs index 6c1b759d63..8924fe71e7 100644 --- a/osu.Game.Modes.Osu/UI/OsuPlayfield.cs +++ b/osu.Game.Modes.Osu/UI/OsuPlayfield.cs @@ -85,7 +85,7 @@ namespace osu.Game.Modes.Osu.UI public override void OnJudgement(DrawableHitObject judgedObject) { - HitExplosion explosion = new HitExplosion(judgedObject.Judgement) + DrawableOsuJudgementInfo explosion = new DrawableOsuJudgementInfo(judgedObject.Judgement) { Origin = Anchor.Centre, Position = judgedObject.HitObject.StackedEndPosition + judgedObject.Judgement.PositionOffset diff --git a/osu.Game.Modes.Osu/osu.Game.Modes.Osu.csproj b/osu.Game.Modes.Osu/osu.Game.Modes.Osu.csproj index 12135a38fb..1c1add8b94 100644 --- a/osu.Game.Modes.Osu/osu.Game.Modes.Osu.csproj +++ b/osu.Game.Modes.Osu/osu.Game.Modes.Osu.csproj @@ -58,7 +58,7 @@ - +