mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Rename Beatmaps
to BeatmapHashes
for clarity
This commit is contained in:
@ -25,7 +25,7 @@ namespace osu.Game.Collections
|
||||
/// <summary>
|
||||
/// The <see cref="BeatmapInfo.MD5Hash"/>es of beatmaps contained by the collection.
|
||||
/// </summary>
|
||||
public readonly BindableList<string> Beatmaps = new BindableList<string>();
|
||||
public readonly BindableList<string> BeatmapHashes = new BindableList<string>();
|
||||
|
||||
/// <summary>
|
||||
/// The date when this collection was last modified.
|
||||
@ -34,7 +34,7 @@ namespace osu.Game.Collections
|
||||
|
||||
public BeatmapCollection()
|
||||
{
|
||||
Beatmaps.CollectionChanged += (_, __) => onChange();
|
||||
BeatmapHashes.CollectionChanged += (_, __) => onChange();
|
||||
Name.ValueChanged += _ => onChange();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user