1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:02:55 +08:00

Cleanup testcase

This commit is contained in:
smoogipoo 2018-06-07 20:40:27 +09:00
parent 55a5dfa9b6
commit 45dca56461

View File

@ -20,19 +20,13 @@ namespace osu.Game.Rulesets.Mania.Tests
[BackgroundDependencyLoader]
private void load()
{
Child = new ManiaInputManager(new ManiaRuleset().RulesetInfo, 1)
Child = new Column
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Height = 0.85f,
Child = new Column
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
AccentColour = Color4.OrangeRed,
Action = ManiaAction.Special1
}
AccentColour = Color4.OrangeRed,
Action = ManiaAction.Special1
};
}
}