1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 01:22:59 +08:00

Fix incorrect xmldoc in OsuAnimatedButton

This commit is contained in:
Dean Herbert 2019-06-11 01:18:49 +09:00
parent 164b05abd6
commit 71e15fe0f1

View File

@ -19,14 +19,14 @@ namespace osu.Game.Graphics.UserInterface
public class OsuAnimatedButton : OsuClickableContainer public class OsuAnimatedButton : OsuClickableContainer
{ {
/// <summary> /// <summary>
/// The colour that should be flashed when the <see cref="IconButton"/> is clicked. /// The colour that should be flashed when the <see cref="OsuAnimatedButton"/> is clicked.
/// </summary> /// </summary>
protected Color4 FlashColour = Color4.White.Opacity(0.3f); protected Color4 FlashColour = Color4.White.Opacity(0.3f);
private Color4 hoverColour = Color4.White.Opacity(0.1f); private Color4 hoverColour = Color4.White.Opacity(0.1f);
/// <summary> /// <summary>
/// The background colour of the <see cref="IconButton"/> while it is hovered. /// The background colour of the <see cref="OsuAnimatedButton"/> while it is hovered.
/// </summary> /// </summary>
protected Color4 HoverColour protected Color4 HoverColour
{ {