1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

Prefer using statement to fully qualified name

This commit is contained in:
Bartłomiej Dach 2023-12-05 21:49:32 +01:00
parent 7392cc2fda
commit 43701c5d47
No known key found for this signature in database

View File

@ -10,6 +10,7 @@ using osu.Game.Tournament.Components;
using osu.Game.Tournament.Models;
using osu.Game.Tournament.Screens.MapPool;
using osuTK;
using osuTK.Input;
namespace osu.Game.Tournament.Tests.Screens
{
@ -318,7 +319,7 @@ namespace osu.Game.Tournament.Tests.Screens
private void clickBeatmapPanel(int index)
{
InputManager.MoveMouseTo(screen.ChildrenOfType<TournamentBeatmapPanel>().ElementAt(index));
InputManager.Click(osuTK.Input.MouseButton.Left);
InputManager.Click(MouseButton.Left);
}
private partial class TestMapPoolScreen : MapPoolScreen