Sort by difficulty and fix relationship

This commit is contained in:
Drew DeVault
2016-10-20 15:42:09 -04:00
parent 8d6431b35e
commit 42f8d19c73
3 changed files with 10 additions and 2 deletions

View File

@ -127,6 +127,11 @@ namespace osu.Game.Database
{
return connection.GetAllWithChildren<T>(filter, recursive);
}
public void GetChildren<T>(T item, bool recursive = true)
{
connection.GetChildren<T>(item, recursive);
}
readonly Type[] validTypes = new[]
{