// Copyright (c) Wojciech Figat. All rights reserved.
namespace FlaxEngine.GUI
{
///
/// The drag and drop text data.
///
///
public class DragDataText : DragData
{
///
/// The text.
///
public readonly string Text;
///
/// Initializes a new instance of the class.
///
/// The text.
public DragDataText(string text)
{
Text = text;
}
}
}