1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 18:07:24 +08:00

HitExplosion -> DrawableOsuJudgementInfo.

This commit is contained in:
Dean Herbert 2017-03-23 15:11:22 +09:00
parent 02fba000bc
commit b83db18551
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
3 changed files with 4 additions and 4 deletions

View File

@ -9,9 +9,9 @@ using osu.Game.Modes.Judgements;
namespace osu.Game.Modes.Osu.Objects.Drawables
{
public class HitExplosion : DrawableJudgementInfo<OsuJudgementInfo>
public class DrawableOsuJudgementInfo : DrawableJudgementInfo<OsuJudgementInfo>
{
public HitExplosion(OsuJudgementInfo judgement) : base(judgement)
public DrawableOsuJudgementInfo(OsuJudgementInfo judgement) : base(judgement)
{
}

View File

@ -85,7 +85,7 @@ namespace osu.Game.Modes.Osu.UI
public override void OnJudgement(DrawableHitObject<OsuHitObject, OsuJudgementInfo> judgedObject)
{
HitExplosion explosion = new HitExplosion(judgedObject.Judgement)
DrawableOsuJudgementInfo explosion = new DrawableOsuJudgementInfo(judgedObject.Judgement)
{
Origin = Anchor.Centre,
Position = judgedObject.HitObject.StackedEndPosition + judgedObject.Judgement.PositionOffset

View File

@ -58,7 +58,7 @@
<Compile Include="Objects\Drawables\Pieces\ExplodePiece.cs" />
<Compile Include="Objects\Drawables\Pieces\FlashPiece.cs" />
<Compile Include="Objects\Drawables\Pieces\GlowPiece.cs" />
<Compile Include="Objects\Drawables\HitExplosion.cs" />
<Compile Include="Objects\Drawables\DrawableOsuJudgementInfo.cs" />
<Compile Include="Objects\Drawables\Pieces\NumberPiece.cs" />
<Compile Include="Objects\Drawables\DrawableSliderTick.cs" />
<Compile Include="Objects\Drawables\Pieces\RingPiece.cs" />