mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
20 lines
510 B
C#
20 lines
510 B
C#
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options.Gameplay
|
|
{
|
|
public class GameplaySection : OptionsSection
|
|
{
|
|
public override string Header => "Gameplay";
|
|
public override FontAwesome Icon => FontAwesome.fa_circle_o;
|
|
|
|
public GameplaySection()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new GeneralGameplayOptions(),
|
|
new SongSelectGameplayOptions(),
|
|
};
|
|
}
|
|
}
|
|
} |