1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 19:04:00 +08:00

Update naming

This commit is contained in:
Dean Herbert
2020-01-22 23:04:37 +09:00
Unverified
parent 8c29093d1c
commit 8ea354571c
+2 -2
View File
@@ -330,7 +330,7 @@ namespace osu.Game
private class OsuUserInputManager : UserInputManager
{
protected override MouseButtonEventManager CreateButtonManagerFor(MouseButton button)
protected override MouseButtonEventManager CreateButtonEventManagerFor(MouseButton button)
{
switch (button)
{
@@ -338,7 +338,7 @@ namespace osu.Game
return new RightMouseManager(button);
}
return base.CreateButtonManagerFor(button);
return base.CreateButtonEventManagerFor(button);
}
private class RightMouseManager : MouseButtonEventManager