mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:07:25 +08:00
11 lines
238 B
C#
11 lines
238 B
C#
using osu.Game.Modes.Objects.Drawables;
|
|
|
|
namespace osu.Game.Modes.Judgements
|
|
{
|
|
public class JudgementInfo
|
|
{
|
|
public ulong? ComboAtHit;
|
|
public HitResult? Result;
|
|
public double TimeOffset;
|
|
}
|
|
} |