1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 19:05:37 +08:00
osu-lazer/osu.Game/Database/ICanImportArchives.cs
2018-02-15 14:22:39 +09:00

10 lines
185 B
C#

namespace osu.Game.Database
{
public interface ICanImportArchives
{
void Import(params string[] paths);
string[] HandledExtensions { get; }
}
}