1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-01 10:12:54 +08:00
osu-lazer/osu.Game/Screens/Play/ReplaySettings/ReplaySettingsOverlay.cs
2017-05-30 12:23:53 +03:00

25 lines
735 B
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Screens.Play.ReplaySettings
{
public class ReplaySettingsOverlay : FillFlowContainer
{
public ReplaySettingsOverlay()
{
AlwaysPresent = true;
Direction = FillDirection.Vertical;
AutoSizeAxes = Axes.Both;
Spacing = new Vector2(0, 20);
Add(new CollectionSettings());
Add(new DiscussionSettings());
Add(new PlaybackSettings());
}
}
}