mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 17:37:23 +09: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; }
|
|
}
|
|
}
|