osu/osu.Game/Screens/Play/HUD/HitErrorMeters/HitErrorMeter.cs

22 lines
627 B
C#
Raw Normal View History

2019-08-30 06:32:47 +00: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 06:24:00 +00:00
using osu.Game.Rulesets.Scoring;
2019-08-30 06:32:47 +00:00
2019-08-30 09:46:42 +00:00
namespace osu.Game.Screens.Play.HUD.HitErrorMeters
2019-08-30 06:32:47 +00: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 06:32:47 +00:00
}
}