Move ColumnType to constructor

This commit is contained in:
Dean Herbert
2022-10-04 17:49:00 +09:00
parent e0c66dbdbc
commit df3ad618e1
7 changed files with 15 additions and 17 deletions

View File

@ -9,6 +9,7 @@ using osu.Framework.Input.Events;
using osu.Framework.Timing;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Mania.Beatmaps;
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rulesets.Mania.Objects.Drawables;
using osu.Game.Rulesets.Mania.UI;
@ -35,7 +36,7 @@ namespace osu.Game.Rulesets.Mania.Tests
RelativeSizeAxes = Axes.Y,
TimeRange = 2000,
Clock = new FramedClock(clock),
Child = column = new Column(0)
Child = column = new Column(0, ColumnType.Even)
{
Action = { Value = ManiaAction.Key1 },
Height = 0.85f,