mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 16:47:46 +08:00
Prefer using statement to fully qualified name
This commit is contained in:
parent
7392cc2fda
commit
43701c5d47
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user