2021-11-10 11:36:23 +00: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.
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2021-11-10 11:36:23 +00:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Wraps the contents of the editor clipboard.
|
|
|
|
/// </summary>
|
|
|
|
public class EditorClipboard
|
|
|
|
{
|
|
|
|
public Bindable<string> Content { get; } = new Bindable<string>();
|
|
|
|
}
|
|
|
|
}
|