mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
57f8ccca16
Also update the xmldoc to not be specific to difficulty switching
24 lines
649 B
C#
24 lines
649 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.
|
|
|
|
#nullable enable
|
|
|
|
namespace osu.Game.Screens.Edit
|
|
{
|
|
/// <summary>
|
|
/// Structure used to convey the general state of an <see cref="Editor"/> instance.
|
|
/// </summary>
|
|
public class EditorState
|
|
{
|
|
/// <summary>
|
|
/// The current audio time.
|
|
/// </summary>
|
|
public double Time { get; set; }
|
|
|
|
/// <summary>
|
|
/// The editor clipboard content.
|
|
/// </summary>
|
|
public string ClipboardContent { get; set; } = string.Empty;
|
|
}
|
|
}
|