osu/osu.Game/Screens/Play/ReplaySettingsOverlay.cs

25 lines
730 B
C#
Raw Normal View History

2017-05-17 07:36:57 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
2017-05-17 07:36:57 +00:00
using osu.Framework.Graphics.Containers;
2017-06-05 07:47:42 +00:00
using osu.Game.Screens.Play.ReplaySettings;
using OpenTK;
2017-05-17 07:36:57 +00:00
2017-06-05 07:47:42 +00:00
namespace osu.Game.Screens.Play
2017-05-17 07:36:57 +00:00
{
2017-05-18 17:21:58 +00:00
public class ReplaySettingsOverlay : FillFlowContainer
2017-05-17 07:36:57 +00:00
{
2017-05-18 17:21:58 +00:00
public ReplaySettingsOverlay()
2017-05-17 07:36:57 +00:00
{
Direction = FillDirection.Vertical;
AutoSizeAxes = Axes.Both;
2017-05-17 07:36:57 +00:00
Spacing = new Vector2(0, 20);
2017-05-18 08:39:22 +00:00
Add(new CollectionSettings());
Add(new DiscussionSettings());
Add(new PlaybackSettings());
2017-05-17 07:36:57 +00:00
}
}
}