1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 15:57:19 +08:00

22 lines
627 B
C#
Raw Normal View History

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