Update naming

This commit is contained in:
Dean Herbert 2020-01-22 23:04:37 +09:00
parent 8c29093d1c
commit 8ea354571c
1 changed files with 2 additions and 2 deletions

View File

@ -330,7 +330,7 @@ protected override void Dispose(bool isDisposing)
private class OsuUserInputManager : UserInputManager
{
protected override MouseButtonEventManager CreateButtonManagerFor(MouseButton button)
protected override MouseButtonEventManager CreateButtonEventManagerFor(MouseButton button)
{
switch (button)
{
@ -338,7 +338,7 @@ protected override MouseButtonEventManager CreateButtonManagerFor(MouseButton bu
return new RightMouseManager(button);
}
return base.CreateButtonManagerFor(button);
return base.CreateButtonEventManagerFor(button);
}
private class RightMouseManager : MouseButtonEventManager