Restore clipboard content after difficulty switch

This commit is contained in:
Bartłomiej Dach
2021-09-11 17:55:11 +02:00
parent 79d0f4835e
commit 35ee889e5b
2 changed files with 9 additions and 1 deletions

View File

@ -15,5 +15,10 @@ namespace osu.Game.Screens.Edit
/// The current clock time when a difficulty switch was requested.
/// </summary>
public double? Time { get; set; }
/// <summary>
/// The current editor clipboard content at the time when a difficulty switch was requested.
/// </summary>
public string? ClipboardContent { get; set; }
}
}