Add xmldoc to Leaderboard class

This commit is contained in:
Dean Herbert 2022-01-28 21:16:29 +09:00
parent 4132f67629
commit c6d303a5b4

View File

@ -23,6 +23,12 @@ using osuTK.Graphics;
namespace osu.Game.Online.Leaderboards
{
/// <summary>
/// A leaderboard which displays a scrolling list of top scores, along with a single "user best"
/// for the local user.
/// </summary>
/// <typeparam name="TScope">The scope of the leaderboard (ie. global or local).</typeparam>
/// <typeparam name="TScoreInfo">The score model class.</typeparam>
public abstract class Leaderboard<TScope, TScoreInfo> : Container
{
private const double fade_duration = 300;