mirror of
https://github.com/osukey/osukey.git
synced 2025-05-11 00:27:23 +09:00
24 lines
757 B
C#
24 lines
757 B
C#
// 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.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Scoring
|
|
{
|
|
internal class OsuScoreProcessor : ScoreProcessor
|
|
{
|
|
public OsuScoreProcessor(IBeatmap beatmap)
|
|
: base(beatmap)
|
|
{
|
|
}
|
|
|
|
protected override JudgementResult CreateResult(HitObject hitObject, Judgement judgement) => new OsuJudgementResult(hitObject, judgement);
|
|
|
|
public override HitWindows CreateHitWindows() => new OsuHitWindows();
|
|
}
|
|
}
|