mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 19:05:37 +08:00
10 lines
185 B
C#
10 lines
185 B
C#
namespace osu.Game.Database
|
|
{
|
|
public interface ICanImportArchives
|
|
{
|
|
void Import(params string[] paths);
|
|
|
|
string[] HandledExtensions { get; }
|
|
}
|
|
}
|