mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09:00
20 lines
517 B
C#
20 lines
517 B
C#
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options.Gameplay
|
|
{
|
|
public class GameplaySection : OptionsSection
|
|
{
|
|
protected override string Header => "Gameplay";
|
|
public override FontAwesome Icon => FontAwesome.fa_circle_o;
|
|
|
|
public GameplaySection()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new GeneralGameplayOptions(),
|
|
new SongSelectGameplayOptions(),
|
|
};
|
|
}
|
|
}
|
|
} |