1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00
osu-lazer/osu.Game/Database/ICanAcceptFiles.cs

10 lines
182 B
C#
Raw Normal View History

namespace osu.Game.Database
{
2018-02-15 13:19:16 +08:00
public interface ICanAcceptFiles
{
void Import(params string[] paths);
string[] HandledExtensions { get; }
}
}