1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

Add missing xmldoc

This commit is contained in:
Dean Herbert 2020-02-14 15:34:46 +09:00
parent 4d5abab2ee
commit 7e6c194d4a

View File

@ -68,8 +68,14 @@ namespace osu.Game.Online
}
}
/// <summary>
/// Applies a transform to the online content to make it hidden.
/// </summary>
protected virtual void PopContentOut(Drawable content) => content.FadeOut(TRANSFORM_TIME / 2, Easing.OutQuint);
/// <summary>
/// Applies a transform to the online content to make it visible.
/// </summary>
protected virtual void PopContentIn(Drawable content) => content.FadeIn(TRANSFORM_TIME, Easing.OutQuint);
protected override void LoadComplete()