mirror of
https://github.com/osukey/osukey.git
synced 2025-05-19 12:37:38 +09:00
10 lines
182 B
C#
10 lines
182 B
C#
namespace osu.Game.Database
|
|
{
|
|
public interface ICanAcceptFiles
|
|
{
|
|
void Import(params string[] paths);
|
|
|
|
string[] HandledExtensions { get; }
|
|
}
|
|
}
|