mirror of
https://github.com/osukey/osukey.git
synced 2025-06-08 04:48:04 +09:00
Move constructor above methods in DirectPanel
This commit is contained in:
parent
c3d753a585
commit
6eac19e76b
@ -19,6 +19,11 @@ namespace osu.Game.Overlays.Direct
|
|||||||
{
|
{
|
||||||
protected readonly BeatmapSetInfo SetInfo;
|
protected readonly BeatmapSetInfo SetInfo;
|
||||||
|
|
||||||
|
public DirectPanel(BeatmapSetInfo setInfo)
|
||||||
|
{
|
||||||
|
SetInfo = setInfo;
|
||||||
|
}
|
||||||
|
|
||||||
protected IEnumerable<DifficultyIcon> GetDifficultyIcons()
|
protected IEnumerable<DifficultyIcon> GetDifficultyIcons()
|
||||||
{
|
{
|
||||||
var icons = new List<DifficultyIcon>();
|
var icons = new List<DifficultyIcon>();
|
||||||
@ -38,11 +43,6 @@ namespace osu.Game.Overlays.Direct
|
|||||||
}) { RelativeSizeAxes = Axes.Both };
|
}) { RelativeSizeAxes = Axes.Both };
|
||||||
}
|
}
|
||||||
|
|
||||||
public DirectPanel(BeatmapSetInfo setInfo)
|
|
||||||
{
|
|
||||||
SetInfo = setInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public class Statistic : FillFlowContainer
|
public class Statistic : FillFlowContainer
|
||||||
{
|
{
|
||||||
private readonly SpriteText text;
|
private readonly SpriteText text;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user