osu/osu.Game/Overlays/Settings/Sections/GameplaySection.cs

24 lines
721 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-02-07 04:52:19 +00:00
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Overlays.Settings.Sections.Gameplay;
2017-02-07 04:52:19 +00:00
namespace osu.Game.Overlays.Settings.Sections
2017-02-07 04:52:19 +00:00
{
public class GameplaySection : SettingsSection
2017-02-07 04:52:19 +00:00
{
public override string Header => "Gameplay";
public override FontAwesome Icon => FontAwesome.fa_circle_o;
public GameplaySection()
{
2017-02-27 14:37:38 +00:00
Children = new Drawable[]
2017-02-07 04:52:19 +00:00
{
new GeneralSettings(),
new SongSelectSettings(),
2017-02-07 04:52:19 +00:00
};
}
}
2016-11-03 04:26:49 +00:00
}