mirror of https://github.com/ppy/osu
Move `private` field up with others
This commit is contained in:
parent
b9ed6a7a7c
commit
72cfe2ba5a
|
@ -21,6 +21,8 @@ public partial class OsuTouchInputMapper : Drawable
|
|||
/// </summary>
|
||||
private readonly List<TrackedTouch> trackedTouches = new List<TrackedTouch>();
|
||||
|
||||
private TrackedTouch? positionTrackingTouch;
|
||||
|
||||
private readonly OsuInputManager osuInputManager;
|
||||
|
||||
private Bindable<bool> mouseDisabled = null!;
|
||||
|
@ -44,8 +46,6 @@ protected override void OnTouchMove(TouchMoveEvent e)
|
|||
handleTouchMovement(e);
|
||||
}
|
||||
|
||||
private TrackedTouch? positionTrackingTouch;
|
||||
|
||||
protected override bool OnTouchDown(TouchDownEvent e)
|
||||
{
|
||||
OsuAction action = trackedTouches.Any(t => t.Action == OsuAction.LeftButton)
|
||||
|
|
Loading…
Reference in New Issue