mirror of
https://github.com/osukey/osukey.git
synced 2025-05-23 14:37:39 +09:00
23 lines
660 B
C#
23 lines
660 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.Rulesets.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Judgements
|
|
{
|
|
internal class JudgementResultEntry
|
|
{
|
|
public readonly double Time;
|
|
|
|
public readonly HitObjectLifetimeEntry HitObjectEntry;
|
|
|
|
public readonly JudgementResult Result;
|
|
|
|
public JudgementResultEntry(double time, HitObjectLifetimeEntry hitObjectEntry, JudgementResult result)
|
|
{
|
|
Time = time;
|
|
HitObjectEntry = hitObjectEntry;
|
|
Result = result;
|
|
}
|
|
}
|
|
} |