2019-01-24 16:43:03 +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.
|
2018-08-02 19:36:38 +08:00
|
|
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2019-09-02 15:28:14 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-08-02 19:36:38 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Judgements
|
|
|
|
{
|
|
|
|
public class OsuJudgementResult : JudgementResult
|
|
|
|
{
|
|
|
|
public ComboResult ComboType;
|
|
|
|
|
2019-09-02 16:14:40 +08:00
|
|
|
public OsuJudgementResult(HitObject hitObject, Judgement judgement)
|
|
|
|
: base(hitObject, judgement)
|
2018-08-02 19:36:38 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|