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