2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-13 15:42:40 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2018-11-15 20:37:22 +08:00
|
|
|
using osu.Framework.Graphics;
|
2018-11-13 15:42:40 +08:00
|
|
|
using osu.Framework.Timing;
|
2018-11-15 20:37:22 +08:00
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2018-11-13 15:42:40 +08:00
|
|
|
using osu.Game.Tests.Visual;
|
2018-11-26 10:47:48 +08:00
|
|
|
using osuTK.Graphics;
|
2018-11-13 15:42:40 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests
|
|
|
|
{
|
2020-05-27 22:15:16 +08:00
|
|
|
public abstract class ManiaSelectionBlueprintTestScene : SelectionBlueprintTestScene
|
2018-11-13 15:42:40 +08:00
|
|
|
{
|
|
|
|
[Cached(Type = typeof(IAdjustableClock))]
|
|
|
|
private readonly IAdjustableClock clock = new StopwatchClock();
|
2018-11-15 20:37:22 +08:00
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
protected ManiaSelectionBlueprintTestScene()
|
2018-11-15 20:37:22 +08:00
|
|
|
{
|
2020-05-22 10:35:26 +08:00
|
|
|
Add(new Column(0)
|
2018-11-15 20:37:22 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
AccentColour = Color4.OrangeRed,
|
|
|
|
Clock = new FramedClock(new StopwatchClock()), // No scroll
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-22 10:35:26 +08:00
|
|
|
public ManiaPlayfield Playfield => null;
|
2018-11-13 15:42:40 +08:00
|
|
|
}
|
|
|
|
}
|