1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 11:42:56 +08:00

Save on disposal

This commit is contained in:
smoogipoo 2020-09-02 23:32:08 +09:00
parent b7adb4b1fd
commit fd3ab41731

View File

@ -176,6 +176,12 @@ namespace osu.Game.Collections
return false;
}
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
save();
}
}
public class BeatmapCollection