1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 17:47:18 +08:00

Restore mention of dependency on another ctor param

This commit is contained in:
Bartłomiej Dach 2023-11-10 17:57:16 +09:00
parent d0f1326a63
commit 36d0bae42d
No known key found for this signature in database

View File

@ -54,7 +54,10 @@ namespace osu.Game.Users.Drawables
/// </summary>
/// <param name="user">The initial user to display.</param>
/// <param name="isInteractive">If set to true, hover/click sounds will play and clicking the avatar will open the user's profile.</param>
/// <param name="showUserPanelOnHover">If set to true, the user status panel will be displayed in the tooltip.</param>
/// <param name="showUserPanelOnHover">
/// If set to true, the user status panel will be displayed in the tooltip.
/// Only has an effect if <see cref="isInteractive"/> is true.
/// </param>
/// <param name="showGuestOnNull">Whether to show a default guest representation on null user (as opposed to nothing).</param>
public UpdateableAvatar(APIUser? user = null, bool isInteractive = true, bool showUserPanelOnHover = false, bool showGuestOnNull = true)
{