1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 17:32:54 +08:00

Oops, fix not compiling test

This commit is contained in:
AbstractQbit 2021-09-15 21:34:41 +03:00
parent 318f0941ca
commit 30c458c662

View File

@ -121,12 +121,12 @@ namespace osu.Game.Tests.Visual.Menus
private class AllowScreen : OsuScreen
{
public override bool? AllowTrackAdjustments => true;
public override bool AllowTrackAdjustments => true;
}
private class DisallowScreen : OsuScreen
{
public override bool? AllowTrackAdjustments => false;
public override bool AllowTrackAdjustments => false;
}
private class InheritScreen : OsuScreen