mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Add note about hash storage
This commit is contained in:
parent
1669208a54
commit
226eefcc5c
@ -26,6 +26,13 @@ namespace osu.Game.Collections
|
||||
/// <summary>
|
||||
/// The <see cref="BeatmapInfo.MD5Hash"/>es of beatmaps contained by the collection.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// We store as hashes rather than references to <see cref="BeatmapInfo"/>s to allow collections to maintain
|
||||
/// references to beatmaps even if they are removed. This helps with cases like importing collections before
|
||||
/// importing the beatmaps they contain, or when sharing collections between users.
|
||||
///
|
||||
/// This can probably change in the future as we build the system up.
|
||||
/// </remarks>
|
||||
public IList<string> BeatmapMD5Hashes { get; } = null!;
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
Reference in New Issue
Block a user