mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Polish xmldocs
This commit is contained in:
parent
29ce27098d
commit
c930ec97d6
@ -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;
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user