2021-09-12 00:36:57 +08:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-09-14 22:36:26 +08:00
|
|
|
/// Structure used to convey the general state of an <see cref="Editor"/> instance.
|
2021-09-12 00:36:57 +08:00
|
|
|
/// </summary>
|
|
|
|
public class EditorState
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-09-14 22:36:26 +08:00
|
|
|
/// The current audio time.
|
2021-09-12 00:36:57 +08:00
|
|
|
/// </summary>
|
2021-09-14 22:36:26 +08:00
|
|
|
public double Time { get; set; }
|
2021-09-11 23:55:11 +08:00
|
|
|
|
|
|
|
/// <summary>
|
2021-09-14 22:36:26 +08:00
|
|
|
/// The editor clipboard content.
|
2021-09-11 23:55:11 +08:00
|
|
|
/// </summary>
|
2021-09-14 22:36:26 +08:00
|
|
|
public string ClipboardContent { get; set; } = string.Empty;
|
2021-09-12 00:36:57 +08:00
|
|
|
}
|
|
|
|
}
|