mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Move private
field up with others
This commit is contained in:
@ -21,6 +21,8 @@ namespace osu.Game.Rulesets.Osu.UI
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly List<TrackedTouch> trackedTouches = new List<TrackedTouch>();
|
private readonly List<TrackedTouch> trackedTouches = new List<TrackedTouch>();
|
||||||
|
|
||||||
|
private TrackedTouch? positionTrackingTouch;
|
||||||
|
|
||||||
private readonly OsuInputManager osuInputManager;
|
private readonly OsuInputManager osuInputManager;
|
||||||
|
|
||||||
private Bindable<bool> mouseDisabled = null!;
|
private Bindable<bool> mouseDisabled = null!;
|
||||||
@ -44,8 +46,6 @@ namespace osu.Game.Rulesets.Osu.UI
|
|||||||
handleTouchMovement(e);
|
handleTouchMovement(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
private TrackedTouch? positionTrackingTouch;
|
|
||||||
|
|
||||||
protected override bool OnTouchDown(TouchDownEvent e)
|
protected override bool OnTouchDown(TouchDownEvent e)
|
||||||
{
|
{
|
||||||
OsuAction action = trackedTouches.Any(t => t.Action == OsuAction.LeftButton)
|
OsuAction action = trackedTouches.Any(t => t.Action == OsuAction.LeftButton)
|
||||||
|
Reference in New Issue
Block a user