mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Change CollectionManager
to only store MD5 hashes instead of full BeatmapInfo
This commit is contained in:
@ -23,9 +23,9 @@ namespace osu.Game.Collections
|
||||
public readonly Bindable<string> Name = new Bindable<string>();
|
||||
|
||||
/// <summary>
|
||||
/// The beatmaps contained by the collection.
|
||||
/// The <see cref="BeatmapInfo.MD5Hash"/>es of beatmaps contained by the collection.
|
||||
/// </summary>
|
||||
public readonly BindableList<BeatmapInfo> Beatmaps = new BindableList<BeatmapInfo>();
|
||||
public readonly BindableList<string> Beatmaps = new BindableList<string>();
|
||||
|
||||
/// <summary>
|
||||
/// The date when this collection was last modified.
|
||||
|
Reference in New Issue
Block a user