// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using System.Collections.Generic;
namespace FlaxEngine.GUI
{
///
/// The drag and drop files.
///
///
public class DragDataFiles : DragData
{
///
/// The file paths collection.
///
public readonly List Files;
///
/// Initializes a new instance of the class.
///
/// The files.
public DragDataFiles(IEnumerable files)
{
Files = new List(files);
}
}
}