1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 21:43:21 +08:00
osu-lazer/osu.Game/Database/ICanImportArchives.cs

10 lines
185 B
C#
Raw Normal View History

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