mirror of
https://github.com/ppy/osu
synced 2025-02-04 04:11:54 +00:00
Rename touch "input handlers" to detectors
This commit is contained in:
parent
e2928cc6b9
commit
97fee6143c
@ -13,7 +13,7 @@ using osu.Game.Rulesets.Scoring;
|
||||
|
||||
namespace osu.Game.Screens.Play
|
||||
{
|
||||
public partial class PlayerTouchInputHandler : Component
|
||||
public partial class PlayerTouchInputDetector : Component
|
||||
{
|
||||
[Resolved]
|
||||
private Player player { get; set; } = null!;
|
@ -53,7 +53,7 @@ namespace osu.Game.Screens.Play
|
||||
return;
|
||||
}
|
||||
|
||||
AddInternal(new PlayerTouchInputHandler());
|
||||
AddInternal(new PlayerTouchInputDetector());
|
||||
}
|
||||
|
||||
protected override void LoadAsyncComplete()
|
||||
|
@ -279,7 +279,7 @@ namespace osu.Game.Screens.Select
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
},
|
||||
new SongSelectTouchInputHandler()
|
||||
new SongSelectTouchInputDetector()
|
||||
});
|
||||
|
||||
if (ShowFooter)
|
||||
|
@ -13,7 +13,7 @@ using osu.Game.Utils;
|
||||
|
||||
namespace osu.Game.Screens.Select
|
||||
{
|
||||
public partial class SongSelectTouchInputHandler : Component
|
||||
public partial class SongSelectTouchInputDetector : Component
|
||||
{
|
||||
[Resolved]
|
||||
private Bindable<RulesetInfo> ruleset { get; set; } = null!;
|
Loading…
Reference in New Issue
Block a user