1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +08:00

Remove remaining left-over test implementations

This commit is contained in:
Dean Herbert 2020-05-22 11:32:35 +09:00
parent 6de2597958
commit 9a2889abc5
3 changed files with 1 additions and 16 deletions

View File

@ -15,7 +15,6 @@ using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects.Drawables; using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.UI.Scrolling; using osu.Game.Rulesets.UI.Scrolling;
using osu.Game.Tests.Visual; using osu.Game.Tests.Visual;
using osuTK;
using osuTK.Graphics; using osuTK.Graphics;
namespace osu.Game.Rulesets.Mania.Tests namespace osu.Game.Rulesets.Mania.Tests
@ -57,7 +56,5 @@ namespace osu.Game.Rulesets.Mania.Tests
protected override void AddHitObject(DrawableHitObject hitObject) => column.Add((DrawableManiaHitObject)hitObject); protected override void AddHitObject(DrawableHitObject hitObject) => column.Add((DrawableManiaHitObject)hitObject);
public ManiaPlayfield Playfield => null; public ManiaPlayfield Playfield => null;
public Vector2 ScreenSpacePositionAtTime(double time, Column column = null) => Vector2.Zero;
} }
} }

View File

@ -7,7 +7,6 @@ using osu.Framework.Timing;
using osu.Game.Rulesets.Mania.Edit; using osu.Game.Rulesets.Mania.Edit;
using osu.Game.Rulesets.Mania.UI; using osu.Game.Rulesets.Mania.UI;
using osu.Game.Tests.Visual; using osu.Game.Tests.Visual;
using osuTK;
using osuTK.Graphics; using osuTK.Graphics;
namespace osu.Game.Rulesets.Mania.Tests namespace osu.Game.Rulesets.Mania.Tests
@ -18,11 +17,9 @@ namespace osu.Game.Rulesets.Mania.Tests
[Cached(Type = typeof(IAdjustableClock))] [Cached(Type = typeof(IAdjustableClock))]
private readonly IAdjustableClock clock = new StopwatchClock(); private readonly IAdjustableClock clock = new StopwatchClock();
private readonly Column column;
protected ManiaSelectionBlueprintTestScene() protected ManiaSelectionBlueprintTestScene()
{ {
Add(column = new Column(0) Add(new Column(0)
{ {
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
@ -31,10 +28,6 @@ namespace osu.Game.Rulesets.Mania.Tests
}); });
} }
public Column ColumnAt(Vector2 screenSpacePosition) => column;
public ManiaPlayfield Playfield => null; public ManiaPlayfield Playfield => null;
public Vector2 ScreenSpacePositionAtTime(double time, Column column = null) => Vector2.Zero;
} }
} }

View File

@ -14,7 +14,6 @@ using osu.Game.Rulesets.Mania.UI;
using osu.Game.Rulesets.UI.Scrolling; using osu.Game.Rulesets.UI.Scrolling;
using osu.Game.Screens.Edit; using osu.Game.Screens.Edit;
using osu.Game.Tests.Visual; using osu.Game.Tests.Visual;
using osuTK;
namespace osu.Game.Rulesets.Mania.Tests namespace osu.Game.Rulesets.Mania.Tests
{ {
@ -66,10 +65,6 @@ namespace osu.Game.Rulesets.Mania.Tests
return true; return true;
} }
public Column ColumnAt(Vector2 screenSpacePosition) => null;
public ManiaPlayfield Playfield { get; } public ManiaPlayfield Playfield { get; }
public Vector2 ScreenSpacePositionAtTime(double time, Column column = null) => Vector2.Zero;
} }
} }