1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 18:27:26 +08:00

Improve xmldoc

This commit is contained in:
Dean Herbert 2019-09-03 19:21:24 +09:00
parent 299d528654
commit e98059267d

View File

@ -21,12 +21,12 @@ namespace osu.Game.Graphics.UserInterface
private readonly MouseButton[] buttons; private readonly MouseButton[] buttons;
/// <summary> /// <summary>
/// Creates an instance that adds sounds on hover and on click for any of the buttons specified. /// a container which plays sounds on hover and click for any specified <see cref="MouseButton"/>s.
/// </summary> /// </summary>
/// <param name="sampleSet">Set of click samples to play.</param> /// <param name="sampleSet">Set of click samples to play.</param>
/// <param name="buttons"> /// <param name="buttons">
/// Array of button codes which should trigger the click sound. /// Array of button codes which should trigger the click sound.
/// If this optional parameter is omitted or set to <code>null</code>, the click sound will only be added on left click. /// If this optional parameter is omitted or set to <code>null</code>, the click sound will only be played on left click.
/// </param> /// </param>
public HoverClickSounds(HoverSampleSet sampleSet = HoverSampleSet.Normal, MouseButton[] buttons = null) public HoverClickSounds(HoverSampleSet sampleSet = HoverSampleSet.Normal, MouseButton[] buttons = null)
: base(sampleSet) : base(sampleSet)