Crentalise all import logic

This commit is contained in:
Dean Herbert
2018-02-15 14:19:16 +09:00
parent d3dd31dadb
commit a0a65abcac
8 changed files with 45 additions and 23 deletions

View File

@ -0,0 +1,9 @@
namespace osu.Game.Database
{
public interface ICanAcceptFiles
{
void Import(params string[] paths);
string[] HandledExtensions { get; }
}
}