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

Polish xmldocs

This commit is contained in:
Bartłomiej Dach 2023-05-07 19:18:59 +02:00
parent 29ce27098d
commit c930ec97d6
No known key found for this signature in database
3 changed files with 6 additions and 5 deletions

View File

@ -9,6 +9,9 @@ using osu.Game.Online.API.Requests;
namespace osu.Game.Beatmaps
{
/// <summary>
/// Performs online metadata lookups using the osu-web API.
/// </summary>
public class APIBeatmapMetadataSource : IOnlineBeatmapMetadataSource
{
private readonly IAPIProvider api;

View File

@ -6,7 +6,7 @@ using System;
namespace osu.Game.Beatmaps
{
/// <summary>
/// Unifying interface for sources of online beatmap metadata.
/// Unifying interface for sources of <see cref="OnlineBeatmapMetadata"/>.
/// </summary>
public interface IOnlineBeatmapMetadataSource : IDisposable
{

View File

@ -18,11 +18,9 @@ using SQLitePCL;
namespace osu.Game.Beatmaps
{
/// <summary>
///
/// Performs online metadata lookups using a copy of a database containing metadata for a large subset of beatmaps (stored to <see cref="cache_database_name"/>).
/// The database will be asynchronously downloaded - if not already present locally - when this component is constructed.
/// </summary>
/// <remarks>
/// On creating the component, a copy of a database containing metadata for a large subset of beatmaps (stored to <see cref="cache_database_name"/>) will be downloaded if not already present locally.
/// </remarks>
public class LocalCachedBeatmapMetadataSource : IOnlineBeatmapMetadataSource
{
private readonly Storage storage;