2019-08-30 14:32:47 +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-09-06 14:24:00 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2019-08-30 14:32:47 +08:00
|
|
|
|
|
2019-08-30 17:46:42 +08:00
|
|
|
|
namespace osu.Game.Screens.Play.HUD.HitErrorMeters
|
2019-08-30 14:32:47 +08:00
|
|
|
|
{
|
|
|
|
|
public abstract class HitErrorMeter : CompositeDrawable
|
|
|
|
|
{
|
|
|
|
|
protected readonly HitWindows HitWindows;
|
|
|
|
|
|
|
|
|
|
protected HitErrorMeter(HitWindows hitWindows)
|
|
|
|
|
{
|
|
|
|
|
HitWindows = hitWindows;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 15:40:39 +08:00
|
|
|
|
public abstract void OnNewJudgement(JudgementResult judgement);
|
2019-08-30 14:32:47 +08:00
|
|
|
|
}
|
|
|
|
|
}
|