mirror of
https://github.com/osukey/osukey.git
synced 2025-06-23 20:27:58 +09:00
10 lines
185 B
C#
10 lines
185 B
C#
namespace osu.Game.Beatmaps
|
|
{
|
|
public interface ICanImportArchives
|
|
{
|
|
void Import(params string[] paths);
|
|
|
|
string[] HandledExtensions { get; }
|
|
}
|
|
}
|