osu/osu.Game/Database/ICanAcceptFiles.cs

23 lines
728 B
C#
Raw Normal View History

2018-02-15 07:33:33 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Database
{
2018-02-15 06:14:46 +00:00
/// <summary>
/// A class which can accept files for importing.
/// </summary>
2018-02-15 05:19:16 +00:00
public interface ICanAcceptFiles
{
2018-02-15 06:14:46 +00:00
/// <summary>
/// Import the specified paths.
/// </summary>
/// <param name="paths">The files which should be imported.</param>
void Import(params string[] paths);
2018-02-15 06:14:46 +00:00
/// <summary>
/// An array of accepted file extensions (in the standard format of ".abc").
/// </summary>
string[] HandledExtensions { get; }
}
}