// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; namespace osu.Game.Rulesets.Difficulty { /// /// Wraps a object and adds a time value for which the attribute is valid. /// Output by . /// public class TimedDifficultyAttributes : IComparable { public readonly double Time; public readonly DifficultyAttributes Attributes; public TimedDifficultyAttributes(double time, DifficultyAttributes attributes) { Time = time; Attributes = attributes; } public int CompareTo(TimedDifficultyAttributes other) => Time.CompareTo(other.Time); } }