Add last played date to BeatmapInfo

This commit is contained in:
Dean Herbert
2022-07-13 16:36:43 +09:00
parent 83703e28e6
commit 8820ea4006
2 changed files with 7 additions and 1 deletions

View File

@ -110,6 +110,11 @@ namespace osu.Game.Beatmaps
public bool SamplesMatchPlaybackRate { get; set; } = true;
/// <summary>
/// The time at which this beatmap was last played by the local user.
/// </summary>
public DateTimeOffset? LastPlayed { get; set; }
/// <summary>
/// The ratio of distance travelled per time unit.
/// Generally used to decouple the spacing between hit objects from the enforced "velocity" of the beatmap (see <see cref="DifficultyControlPoint.SliderVelocity"/>).