mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
19 lines
427 B
C#
19 lines
427 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class GameplayOptions : OptionsSection
|
|
{
|
|
protected override string Header => "Gameplay";
|
|
|
|
public GameplayOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new GeneralGameplayOptions(),
|
|
new SongSelectGameplayOptions(),
|
|
};
|
|
}
|
|
}
|
|
} |