2019-08-11 19:57:21 +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.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2019-08-11 23:04:54 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2019-08-11 19:57:21 +08:00
|
|
|
|
|
2019-08-20 01:28:03 +08:00
|
|
|
|
namespace osu.Game.Screens.Play.HitErrorDisplay
|
2019-08-11 19:57:21 +08:00
|
|
|
|
{
|
2019-08-20 01:44:06 +08:00
|
|
|
|
public abstract class HitErrorDisplay : CompositeDrawable
|
2019-08-11 19:57:21 +08:00
|
|
|
|
{
|
2019-08-20 01:44:06 +08:00
|
|
|
|
protected readonly HitWindows HitWindows;
|
2019-08-11 20:53:15 +08:00
|
|
|
|
|
2019-08-20 13:45:51 +08:00
|
|
|
|
protected HitErrorDisplay(HitWindows hitWindows)
|
2019-08-11 19:57:21 +08:00
|
|
|
|
{
|
2019-08-20 01:44:06 +08:00
|
|
|
|
HitWindows = hitWindows;
|
2019-08-11 19:57:21 +08:00
|
|
|
|
}
|
2019-08-11 20:53:15 +08:00
|
|
|
|
|
2019-08-20 01:44:06 +08:00
|
|
|
|
public abstract void OnNewJudgement(JudgementResult newJudgement);
|
2019-08-11 19:57:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|