mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 02:32:59 +08:00
Fixed the alert from AppVeyor.
maybe.
This commit is contained in:
parent
28da60cc38
commit
cfc4c39255
@ -1,4 +1,7 @@
|
||||
using System;
|
||||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using OpenTK;
|
||||
using OpenTK.Graphics;
|
||||
@ -41,14 +44,14 @@ namespace osu.Game.Rulesets.Mania.UI
|
||||
}
|
||||
}
|
||||
|
||||
private readonly FillFlowContainer<Column> columns;
|
||||
public IEnumerable<Column> Columns => columns.Children;
|
||||
private readonly FillFlowContainer<Column> columns;
|
||||
|
||||
protected override Container<Drawable> Content => content;
|
||||
private readonly Container<Drawable> content;
|
||||
|
||||
private readonly Container<DrawableManiaJudgement> judgements;
|
||||
public Container<DrawableManiaJudgement> Judgements => judgements;
|
||||
private readonly Container<DrawableManiaJudgement> judgements;
|
||||
|
||||
private readonly Container topLevelContainer;
|
||||
public Container TopLevelContainer => topLevelContainer;
|
||||
|
@ -80,10 +80,7 @@ namespace osu.Game.Rulesets.Mania.UI
|
||||
|
||||
for (int i = 0; i < numberOfGroup; i ++)
|
||||
{
|
||||
var group = new ManiaColumnGroup(columnCount / numberOfGroup)
|
||||
{
|
||||
|
||||
};
|
||||
var group = new ManiaColumnGroup(columnCount / numberOfGroup);
|
||||
ListColumnGroup.Add(group);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user