1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 12:07:24 +08:00
osu-lazer/osu.Game.Rulesets.Taiko.Tests/DrawableTestHit.cs

34 lines
930 B
C#
Raw Normal View History

2020-04-28 10:07:31 +08:00
// 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.Allocation;
2020-09-25 18:25:58 +08:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
2020-04-28 10:07:31 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.Taiko.Objects;
using osu.Game.Rulesets.Taiko.Objects.Drawables;
namespace osu.Game.Rulesets.Taiko.Tests
{
2020-09-25 18:25:58 +08:00
public class DrawableTestHit : DrawableHit
2020-04-28 10:07:31 +08:00
{
2020-09-25 18:25:58 +08:00
public readonly HitResult Type;
2020-04-28 10:07:31 +08:00
public DrawableTestHit(Hit hit, HitResult type = HitResult.Great)
: base(hit)
{
2020-09-25 18:25:58 +08:00
Type = type;
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
2020-04-28 10:07:31 +08:00
}
[BackgroundDependencyLoader]
private void load()
{
2020-09-25 18:25:58 +08:00
Result.Type = Type;
2020-04-28 10:07:31 +08:00
}
public override bool OnPressed(TaikoAction action) => false;
}
}