1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 02:02:53 +08:00

Reword and add missing xmldoc to OnScreenDisplay

This commit is contained in:
Lucas A 2019-08-12 10:53:06 +02:00
parent ea4a97ebd9
commit 9c15024014

View File

@ -16,6 +16,10 @@ using osu.Game.Overlays.OSD;
namespace osu.Game.Overlays
{
/// <summary>
/// An on-screen display which automatically tracks and displays toast notifications for <seealso cref="TrackedSettings"/>.
/// Can also display custom content via <see cref="Display(Toast)"/>
/// </summary>
public class OnScreenDisplay : Container
{
private readonly Container box;
@ -97,7 +101,7 @@ namespace osu.Game.Overlays
}
/// <summary>
/// Displays the given <see cref="Toast"/> as parameter on the OSD
/// Displays the provided <see cref="Toast"/> temporarily.
/// </summary>
/// <param name="toast"></param>
public void Display(Toast toast)