1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +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;
/// <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>
/// <param name="sampleSet">Set of click samples to play.</param>
/// <param name="buttons">
/// 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>
public HoverClickSounds(HoverSampleSet sampleSet = HoverSampleSet.Normal, MouseButton[] buttons = null)
: base(sampleSet)