1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Database/ICanAcceptFiles.cs

23 lines
728 B
C#
Raw Normal View History

2018-02-15 15:33:33 +08: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 14:14:46 +08:00
/// <summary>
/// A class which can accept files for importing.
/// </summary>
2018-02-15 13:19:16 +08:00
public interface ICanAcceptFiles
{
2018-02-15 14:14:46 +08: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 14:14:46 +08:00
/// <summary>
/// An array of accepted file extensions (in the standard format of ".abc").
/// </summary>
string[] HandledExtensions { get; }
}
}