osu/osu.Game/Overlays/Options/GameplayOptions.cs

21 lines
522 B
C#
Raw Normal View History

2016-11-03 04:26:49 +00:00
using System;
using osu.Framework.Graphics;
using osu.Game.Graphics;
2016-11-03 04:26:49 +00:00
namespace osu.Game.Overlays.Options
{
public class GameplayOptions : OptionsSection
{
protected override string Header => "Gameplay";
public override FontAwesome Icon => FontAwesome.fa_circle_o;
2016-11-03 04:26:49 +00:00
public GameplayOptions()
{
Children = new Drawable[]
{
new GeneralGameplayOptions(),
new SongSelectGameplayOptions(),
};
}
}
}