1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

Match class name to file

This commit is contained in:
Dan Balasescu 2022-08-10 19:53:40 +09:00
parent 7c6e5a1085
commit 69cbf4185b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ using osu.Game.Models;
namespace osu.Game.Beatmaps
{
public static class HasRealmFilesExtensions
public static class BeatmapSetInfoExtensions
{
/// <summary>
/// Returns the storage path for the file in this beatmapset with the given filename, if any exists, otherwise null.

View File

@ -14,7 +14,7 @@ namespace osu.Game.Database
{
/// <summary>
/// Available files in this model, with locally filenames.
/// When performing lookups, consider using <see cref="HasRealmFilesExtensions.GetFile"/> or <see cref="HasRealmFilesExtensions.GetPathForFile"/> to do case-insensitive lookups.
/// When performing lookups, consider using <see cref="BeatmapSetInfoExtensions.GetFile"/> or <see cref="BeatmapSetInfoExtensions.GetPathForFile"/> to do case-insensitive lookups.
/// </summary>
IList<RealmNamedFileUsage> Files { get; }