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

Remove pointless xmldoc

This commit is contained in:
Dean Herbert 2023-01-17 14:53:24 +09:00
parent 34120b6131
commit 45b34f5306

View File

@ -15,17 +15,14 @@ namespace osu.Game.Rulesets.Osu.UI
{
public partial class OsuTouchInputMapper : Drawable
{
/// <summary>
/// This is our parent <see cref="osuInputManager"/>.
/// </summary>
private readonly OsuInputManager osuInputManager;
/// <summary>
/// All the active <see cref="TouchSource"/>s and the <see cref="OsuAction"/> that it triggered (if any).
/// Ordered from oldest to newest touch chronologically.
/// </summary>
private readonly List<TrackedTouch> trackedTouches = new List<TrackedTouch>();
private readonly OsuInputManager osuInputManager;
private Bindable<bool> mouseDisabled = null!;
public OsuTouchInputMapper(OsuInputManager inputManager)