Add xmldocs / cleanup

This commit is contained in:
smoogipoo
2020-03-17 17:34:16 +09:00
parent 1521f25c96
commit 2ee480f1d8
7 changed files with 73 additions and 23 deletions

View File

@ -15,10 +15,17 @@ using osuTK.Graphics;
namespace osu.Game.Screens.Ranking.Expanded
{
/// <summary>
/// A pill that displays the star rating of a <see cref="BeatmapInfo"/>.
/// </summary>
public class StarRatingDisplay : CompositeDrawable
{
private readonly BeatmapInfo beatmap;
/// <summary>
/// Creates a new <see cref="StarRatingDisplay"/>.
/// </summary>
/// <param name="beatmap">The <see cref="BeatmapInfo"/> to display the star difficulty of.</param>
public StarRatingDisplay(BeatmapInfo beatmap)
{
this.beatmap = beatmap;